You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sourcery_rules_generator/cli/dependencies_cli.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@
26
26
## Parameters for the "Dependencies" Template
27
27
28
28
1. The package that gets imported. Required.
29
-
2. The package(s) that are allowed to import the package above. This parameter can be empty.
29
+
2. The package(s) that are allowed to import the package above. This parameter can be empty. You can provide multiple fully qualified package names separated by comma `,`.
30
30
"""
31
31
32
32
@@ -35,12 +35,12 @@ def create(
35
35
package_option: str=typer.Option(
36
36
None,
37
37
"--package",
38
-
help="The fully qualified name of the package",
38
+
help="The fully qualified name of the package. Always exactly 1 package.",
39
39
),
40
40
caller_option: str=typer.Option(
41
41
None,
42
42
"--importer",
43
-
help="The fully qualified name of the allowed importer",
43
+
help="The fully qualified names of the allowed importers separated by comma. This can be 0, 1 or more importers.",
0 commit comments