We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f750dc commit 38e8601Copy full SHA for 38e8601
quantify.py
@@ -1,7 +1,7 @@
1
# Standard library
2
import datetime
3
-import os.path
4
import logging
+import os.path
5
6
7
def setup():
@@ -13,13 +13,11 @@ def setup():
13
level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
14
)
15
logger = logging.getLogger(__name__)
16
-
+
17
# Paths
18
path_repo_root = os.path.dirname(
19
os.path.abspath(os.path.realpath(__file__))
20
21
- path_dotenv = os.path.join(
22
- path_repo_root, ".env"
23
- )
24
+ path_dotenv = os.path.join(path_repo_root, ".env")
25
return path_repo_root, path_dotenv, datetime_today, logger
0 commit comments