Skip to content

Commit 5d9005b

Browse files
committed
fix(delete): allow extra kwargs
for command forwarding, e.g. from another command
1 parent e57c53b commit 5d9005b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler_admin/commands/user/delete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@click.command()
88
@click.option("-f", "--force", is_flag=True, help="Don't ask for confirmation.")
99
@click.argument("username")
10-
def delete(username: str, force: bool = False):
10+
def delete(username: str, force: bool = False, **kwargs):
1111
"""
1212
Delete a user account.
1313
"""

0 commit comments

Comments
 (0)