We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b68fe9d commit bc9f565Copy full SHA for bc9f565
1 file changed
src/quart_sqlalchemy/sim/auth.py
@@ -274,12 +274,12 @@ def auth_endpoint_security(self):
274
)
275
@click.option(
276
"--client-id",
277
- type=int,
+ type=str,
278
required=True,
279
help="client id",
280
281
@pass_script_info
282
-def add_user(info: ScriptInfo, email: str, user_type: str, client_id: int) -> None:
+def add_user(info: ScriptInfo, email: str, user_type: str, client_id: str) -> None:
283
app = info.load_app()
284
db = app.extensions.get("sqlalchemy")
285
0 commit comments