From 7ab469af84be283098a17a01526c0e5572a16e3a Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 22 Mar 2022 12:51:29 +0530 Subject: [PATCH] fix: setup all apps is empty list is supplied --- bench/utils/bench.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/utils/bench.py b/bench/utils/bench.py index e0be48b90..8bf03aa29 100644 --- a/bench/utils/bench.py +++ b/bench/utils/bench.py @@ -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: