Skip to content

Commit c599ee8

Browse files
committed
fix: use a tuple instead of a list
From perflint: bench/utils/bench.py:89:9: W8301: Use tuple instead of list for a non-mutated sequence (use-tuple-over-list) (just needed a fix to trigger a new release) Signed-off-by: Akhil Narang <[email protected]>
1 parent 3cc170b commit c599ee8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bench/utils/bench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def install_python_dev_dependencies(bench_path=".", apps=None, verbose=False):
8686
bench = Bench(bench_path)
8787

8888
if isinstance(apps, str):
89-
apps = [apps]
89+
apps = (apps,)
9090
elif not apps:
9191
apps = bench.get_installed_apps()
9292

0 commit comments

Comments
 (0)