Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/staging' into v5.x
Browse files Browse the repository at this point in the history
* upstream/staging:
  fix: use a tuple instead of a list

Signed-off-by: Akhil Narang <me@akhilnarang.dev>
  • Loading branch information
akhilnarang committed Aug 21, 2024
2 parents 0e91671 + a1b19cd commit a9e42a8
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 @@ -86,7 +86,7 @@ def install_python_dev_dependencies(bench_path=".", apps=None, verbose=False):
bench = Bench(bench_path)

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

Expand Down

0 comments on commit a9e42a8

Please sign in to comment.