conduct-cli 0.4.33__tar.gz → 0.4.34__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/PKG-INFO +1 -1
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/pyproject.toml +1 -1
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli/main.py +4 -2
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli.egg-info/PKG-INFO +1 -1
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/README.md +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/setup.cfg +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/setup.py +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli/__init__.py +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli/api.py +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli/guard.py +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli/guardmcp.py +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli/mcp_server.py +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli.egg-info/SOURCES.txt +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli.egg-info/dependency_links.txt +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli.egg-info/entry_points.txt +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli.egg-info/requires.txt +0 -0
- {conduct_cli-0.4.33 → conduct_cli-0.4.34}/src/conduct_cli.egg-info/top_level.txt +0 -0
|
@@ -1487,7 +1487,8 @@ def main():
|
|
|
1487
1487
|
elif args.command == "projects":
|
|
1488
1488
|
cmd_projects(args)
|
|
1489
1489
|
elif args.command == "create":
|
|
1490
|
-
|
|
1490
|
+
create_args = getattr(args, "create_args", None)
|
|
1491
|
+
if create_args:
|
|
1491
1492
|
cmd_create(args)
|
|
1492
1493
|
else:
|
|
1493
1494
|
create_p.print_help()
|
|
@@ -1496,7 +1497,8 @@ def main():
|
|
|
1496
1497
|
elif args.command == "install":
|
|
1497
1498
|
cmd_install(args)
|
|
1498
1499
|
elif args.command == "delete":
|
|
1499
|
-
|
|
1500
|
+
delete_args = getattr(args, "delete_args", None)
|
|
1501
|
+
if delete_args:
|
|
1500
1502
|
cmd_delete(args)
|
|
1501
1503
|
else:
|
|
1502
1504
|
delete_p.print_help()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|