Skip to content

Commit bc9f565

Browse files
fix
1 parent b68fe9d commit bc9f565

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/quart_sqlalchemy/sim/auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,12 +274,12 @@ def auth_endpoint_security(self):
274274
)
275275
@click.option(
276276
"--client-id",
277-
type=int,
277+
type=str,
278278
required=True,
279279
help="client id",
280280
)
281281
@pass_script_info
282-
def add_user(info: ScriptInfo, email: str, user_type: str, client_id: int) -> None:
282+
def add_user(info: ScriptInfo, email: str, user_type: str, client_id: str) -> None:
283283
app = info.load_app()
284284
db = app.extensions.get("sqlalchemy")
285285

0 commit comments

Comments
 (0)