Skip to content

Commit

Permalink
🎨 require kwargs in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
Wytamma committed Feb 7, 2024
1 parent 729376e commit a29bb7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snk/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CLI(DynamicTyper):
>>> CLI(Path('/path/to/workflow'))
"""

def __init__(self, workflow_dir_path: Path = None, pipeline_dir_path: Path = None, snk_config: SnkConfig = None) -> None:
def __init__(self, workflow_dir_path: Path = None, *, pipeline_dir_path: Path = None, snk_config: SnkConfig = None) -> None:
if pipeline_dir_path is not None:
# raise a deprecation warning
import warnings
Expand Down

0 comments on commit a29bb7a

Please sign in to comment.