Skip to content

Commit 38e8601

Browse files
committed
restructuring
1 parent 0f750dc commit 38e8601

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

quantify.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Standard library
22
import datetime
3-
import os.path
43
import logging
4+
import os.path
55

66

77
def setup():
@@ -13,13 +13,11 @@ def setup():
1313
level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
1414
)
1515
logger = logging.getLogger(__name__)
16-
16+
1717
# Paths
1818
path_repo_root = os.path.dirname(
1919
os.path.abspath(os.path.realpath(__file__))
2020
)
21-
path_dotenv = os.path.join(
22-
path_repo_root, ".env"
23-
)
24-
21+
path_dotenv = os.path.join(path_repo_root, ".env")
22+
2523
return path_repo_root, path_dotenv, datetime_today, logger

0 commit comments

Comments
 (0)