diff options
author | 2021-02-24 13:53:08 +0100 | |
---|---|---|
committer | 2021-02-24 13:53:08 +0100 | |
commit | da6b581185e8bbe37e561a05827c8517824c7d2c (patch) | |
tree | 2b4f0591fc9b76b74eaa1afd17161758331777c1 /backend/constants.py | |
parent | Hook up unittesting in the submit protocol (diff) |
Switch to 100 chars line length and get rid of the noqas
Diffstat (limited to 'backend/constants.py')
-rw-r--r-- | backend/constants.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/constants.py b/backend/constants.py index cccf437..59b56e0 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -1,9 +1,9 @@ from dotenv import load_dotenv -load_dotenv() +import os +import binascii +from enum import Enum -import os # noqa -import binascii # noqa -from enum import Enum # noqa +load_dotenv() FRONTEND_URL = os.getenv("FRONTEND_URL", "https://forms.pythondiscord.com") |