snajmark commited on
Commit
1eefe00
·
1 Parent(s): 2e2b8ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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