Entry and OU shall not be singletons.

refactor
blallo 2019-05-01 14:17:08 +02:00
parent c4046a83ff
commit fd729170d3
Signed by: blallo
GPG Key ID: 0CBE577C9B72DC3F
1 changed files with 0 additions and 6 deletions

View File

@ -55,12 +55,6 @@ class Entry(object):
kind = None
_name = None
_instance = None
def __new__(cls, *args, **kwargs):
if cls._instance is None:
cls._instance = object.__new__(cls)
return cls._instance
@classmethod
def name(cls):