Skip to content

Commit

Permalink
added collection concept
Browse files Browse the repository at this point in the history
  • Loading branch information
HariGS-DB committed Jun 17, 2024
1 parent 877072f commit d586022
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/unit/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ def test_collection_commands_workspace(mocker):

@app.command(is_unauthenticated=False, is_collection=True)
def foo(
name: str,
age: int,
salary: float,
is_customer: bool,
w: WorkspaceClient,
address: str = "default",
optional_arg: str | None = None,
name: str,
age: int,
salary: float,
is_customer: bool,
w: WorkspaceClient,
address: str = "default",
optional_arg: str | None = None,
):
"""Some comment"""
some(name, age, salary, is_customer, address, optional_arg, w)
Expand Down

0 comments on commit d586022

Please sign in to comment.