summaryrefslogtreecommitdiff
path: root/src/pyssg/configuration.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2022-11-27 06:44:07 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2022-11-27 06:44:07 -0600
commit98bfded1b407431ad62642d7f029e4e5f3534c07 (patch)
tree8f38dd229fe54889d130eb0838c9c47619e96376 /src/pyssg/configuration.py
parent9ea43f16d6440dce54ae7f78d46618d25e52f6ec (diff)
refactor code and fix type checks
still need to refactor more code before migrating to yaml config file
Diffstat (limited to 'src/pyssg/configuration.py')
-rw-r--r--src/pyssg/configuration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyssg/configuration.py b/src/pyssg/configuration.py
index 32a010b..d420fe8 100644
--- a/src/pyssg/configuration.py
+++ b/src/pyssg/configuration.py
@@ -10,7 +10,7 @@ from .utils import get_expanded_path
log: Logger = getLogger(__name__)
-DEFAULT_CONFIG_PATH = '$XDG_CONFIG_HOME/pyssg/config.ini'
+DEFAULT_CONFIG_PATH: str = '$XDG_CONFIG_HOME/pyssg/config.ini'
VERSION = version('pyssg')