2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-23 07:08:23 +00:00

Merge pull request #1577 from akhilnarang/change-list-to-tuple

fix: use a tuple instead of a list
This commit is contained in:
Akhil Narang 2024-08-21 13:21:29 +05:30 committed by GitHub
commit e88fbc47c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,7 +86,7 @@ def install_python_dev_dependencies(bench_path=".", apps=None, verbose=False):
bench = Bench(bench_path) bench = Bench(bench_path)
if isinstance(apps, str): if isinstance(apps, str):
apps = [apps] apps = (apps,)
elif not apps: elif not apps:
apps = bench.get_installed_apps() apps = bench.get_installed_apps()