Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -47,7 +47,7 @@ def authenticate(username, password):
|
|
47 |
authentication_sucess = df_password[df_password["username"] == username]["password"].iloc[0] == password
|
48 |
if authentication_sucess:
|
49 |
message = f"{username} logged"
|
50 |
-
write_logs(message, log_type="Authentication")
|
51 |
return authentication_sucess
|
52 |
|
53 |
|
|
|
47 |
authentication_sucess = df_password[df_password["username"] == username]["password"].iloc[0] == password
|
48 |
if authentication_sucess:
|
49 |
message = f"{username} logged"
|
50 |
+
# write_logs(message, log_type="Authentication")
|
51 |
return authentication_sucess
|
52 |
|
53 |
|