We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a005e1 commit 0173512Copy full SHA for 0173512
script/add_user.py
@@ -6,6 +6,7 @@
6
def main():
7
print("=== Create or Update User ===")
8
email = input("Email: ")
9
+ email = email.strip()
10
is_super_user = input("Is Super User? (y/n): ").lower() == "y"
11
rag_register_user(
12
is_super_user=is_super_user,
0 commit comments