Skip to content

Commit

Permalink
GH-159: Remove password debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-ueding committed Sep 19, 2024
1 parent 42ca189 commit b28c1b7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions geo_activity_playground/webui/authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ def __init__(self, config: Config) -> None:
self._config = config

def is_authenticated(self) -> bool:
print(
f"Password={self._config.upload_password}, Session={session.get('is_authenticated', False)}"
)
return not self._config.upload_password or session.get(
"is_authenticated", False
)
Expand Down

0 comments on commit b28c1b7

Please sign in to comment.