We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a88f7d commit 40ddc1bCopy full SHA for 40ddc1b
ni_python_styleguide/_cli.py
@@ -48,7 +48,8 @@ def _get_application_import_names(pyproject):
48
49
# Next fall back to project.import-names
50
if not app_name:
51
- app_name = pyproject.get("project", {}).get("import-names", "")
+ import_names = pyproject.get("project", {}).get("import-names", [])
52
+ app_name = ",".join(import_names)
53
54
# Next fall back to project.name (replace hyphens)
55
0 commit comments