Skip to content

Commit b17a025

Browse files
authored
Remove stray print statement (#38)
Take it out back and shoot it
1 parent 4202f3c commit b17a025

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/bapi/db.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ def is_valid_session_creation(cls, ip, seeker_port, nonce, valid_duration):
8282
return (False, "invalid")
8383
else:
8484
db_session.delete(valid_nonce)
85-
print(valid_nonce.seconds_since_creation)
8685
if valid_nonce.seconds_since_creation > (valid_duration or 240):
8786
return (False, "expired")
8887
return (True, "")

0 commit comments

Comments
 (0)