Skip to content

Commit

Permalink
fix: setup all apps is empty list is supplied
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush committed Mar 22, 2022
1 parent 8abdbf2 commit 7ab469a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/utils/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def install_python_dev_dependencies(bench_path=".", apps=None, verbose=False):

if isinstance(apps, str):
apps = [apps]
elif apps is None:
elif not apps:
apps = bench.get_installed_apps()

for app in apps:
Expand Down

0 comments on commit 7ab469a

Please sign in to comment.