From 628c146297e15e783021acf17db587d0e0112b5d Mon Sep 17 00:00:00 2001 From: itdominator <1itdominator@gmail.com> Date: Mon, 24 Jan 2022 22:16:25 -0600 Subject: [PATCH] Fixing Logger --- src/utils/Logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Logger.py b/src/utils/Logger.py index 43b928c..06eed47 100644 --- a/src/utils/Logger.py +++ b/src/utils/Logger.py @@ -5,7 +5,7 @@ import os, logging class Logger: - def __init__(config_path): + def __init__(self, config_path): self._CONFIG_PATH = config_path def get_logger(self, loggerName = "NO_LOGGER_NAME_PASSED", createFile = True):