Merge pull request #117 from lovvvve/patch-4

Update click_cmdb.py
This commit is contained in:
pycook 2023-07-13 15:51:36 +08:00 committed by GitHub
commit 92d11fbc91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ def add_user(user, password, mail):
assert user is not None assert user is not None
assert password is not None assert password is not None
assert mail is not None assert mail is not None
UserCRUD.add(username=user, password=password, email=mail, is_admin=is_admin) UserCRUD.add(username=user, password=password, email=mail)
@click.command() @click.command()