Skip to content

Commit

Permalink
Update authz_parser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
schandrika authored Sep 30, 2024
1 parent 78ee6dc commit 34c145b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/volttron/client/commands/authz_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ def authz_remove_role(opts):
def authz_add_agent(opts):
identity: str = opts.identity
role_names: List[str] | None = opts.role_names
topic_names: List[str] | None = opts.topic_names
rpc_capabilities_attr: List[str] | None = opts.rpc_capabilities
pubsub_capabilities_attr: List[str] | None = opts.pubsub_capabilities
comments: str | None = opts.comments
Expand All @@ -296,7 +295,7 @@ def authz_add_agent(opts):
).get()
if res:
print(
f"Added Agent: {topic_names=}, {role_names=}, \
f"Added Agent: {role_names=}, \
{rpc_capabilities_attr=}, {pubsub_capabilities_attr=}, \
{comments=} to {identity=}."
)
Expand Down

0 comments on commit 34c145b

Please sign in to comment.