Skip to content

Commit

Permalink
[CCTRI-1663] Fix error when SECRET_KEY is missing (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaRozlyvan authored Oct 15, 2020
1 parent 7e16755 commit 3a3f026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class Config:
VERSION = VERSION

SECRET_KEY = os.environ.get('SECRET_KEY', '')
SECRET_KEY = os.environ.get('SECRET_KEY', None)

API_URL = 'https://signals.api.auth0.com/'
UI_URL = 'https://auth0.com/signals/ip/{value}-report'
Expand Down

0 comments on commit 3a3f026

Please sign in to comment.