From 419140330031f7c0cfe96dfea00435b9226f8042 Mon Sep 17 00:00:00 2001 From: Markus Stahl Date: Thu, 9 Nov 2023 10:51:47 +0100 Subject: [PATCH] remove old print --- RobotFrameworkService/Config.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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