diff --git a/RobotFrameworkService/Config.py b/RobotFrameworkService/Config.py index 4a6c517..8ed5c30 100644 --- a/RobotFrameworkService/Config.py +++ b/RobotFrameworkService/Config.py @@ -1,9 +1,9 @@ class Config: class Default: - taskfolder = 'tasks' + taskfolder = "tasks" variablefiles = None debugfile = None - + """ Service Config as Singleton """ @@ -13,7 +13,6 @@ class Default: def __new__(cls): if cls._instance is None: - print('Creatin the object') cls._instance = super(Config, cls).__new__(cls) cls._instance.cmd_args = Config.Default() return cls._instance @@ -24,4 +23,4 @@ def cmd_args(self) -> str: @cmd_args.setter def cmd_args(self, value: str): - self._cmd_args = value \ No newline at end of file + self._cmd_args = value