From 12eb6cf2f439f03ab3911d911aa9693073120ccd02b117e5170b842c4eca121d Mon Sep 17 00:00:00 2001 From: Daniel Stoppek Date: Mon, 25 Nov 2024 15:19:46 +0100 Subject: [PATCH] Einfach so --- lib/Test.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 lib/Test.py diff --git a/lib/Test.py b/lib/Test.py deleted file mode 100644 index 51017f9..0000000 --- a/lib/Test.py +++ /dev/null @@ -1,13 +0,0 @@ -import toml - - -class Singleton(object): - def __new__(cls): - if not hasattr(cls, "__instance"): - cls.__instance = super().__new__(cls) - return cls.__instance - - class DbManager(Singleton): - def __init__(self, dbconf): - toml. -