Skip to content

Commit

Permalink
Merge pull request #1577 from akhilnarang/change-list-to-tuple
Browse files Browse the repository at this point in the history
fix: use a tuple instead of a list
  • Loading branch information
akhilnarang authored Aug 21, 2024
2 parents 3cc170b + c599ee8 commit e88fbc4
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 e88fbc4

Please sign in to comment.