Skip to content

Commit

Permalink
Forgot a () at FileLoader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ArJaVer committed Oct 15, 2024
1 parent 4949077 commit 85d0c61
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/evaluix/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.1.27"
__version__ = "0.9.1.28"
1 change: 1 addition & 0 deletions src/evaluix/logs/logger_2024-10-15.log
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
2024-10-15 09:39:29,929 - FileLoader.FileLogger - INFO - log_message - Initializing the data dictionary.
2024-10-15 10:00:13,751 - FileLoader.FileLogger - INFO - log_message - Initializing the data dictionary.
2024-10-15 10:04:38,836 - FileLoader.FileLogger - INFO - log_message - Initializing the data dictionary.
2024-10-15 16:15:34,416 - utils.FileLoader.FileLogger - INFO - log_message - Initializing the data dictionary.
2 changes: 1 addition & 1 deletion src/evaluix/utils/EvaluixConfig.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version: '"0.9.1.26"'
Version: '"0.9.1.28"'
EvaluixConfig: EvaluixConfig.yaml
ProfileConfig: DefaultProfile.yaml
conversion_factors:
Expand Down
2 changes: 1 addition & 1 deletion src/evaluix/utils/FileLoader.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
###########################################
# Define a logger for this module
###########################################
root = pathlib.Path(__file__).resolve.parents[1]
root = pathlib.Path(__file__).resolve().parents[1]
logger_name = __name__

# Create a logger for extensive file logging
Expand Down

0 comments on commit 85d0c61

Please sign in to comment.