Skip to content

Commit

Permalink
revert accidental changes from resolving conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
CorySanin committed Jan 23, 2020
1 parent 9243cae commit a42cecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Expand Up @@ -20,8 +20,8 @@ def read_env_variables():
value = os.getenv('LOGIN_TIMEOUT') or 10
LOGIN_TIMEOUT = int(value)

EMAIL = os.getenv('EMAIL') or ""
PASSWORD = os.getenv('PASSWORD') or ""
EMAIL = os.getenv('EMAIL') or ''
PASSWORD = os.getenv('PASSWORD') or ''
LOGLEVEL = str.upper(os.getenv('LOGLEVEL') or '')
SLEEPTIME = int(os.getenv('SLEEPTIME') or -1)

Expand Down

0 comments on commit a42cecb

Please sign in to comment.