(cls, *args, **kwargs)
| 60 | _initialized = False |
| 61 | |
| 62 | def __new__(cls, *args, **kwargs): |
| 63 | if cls._instance is None: |
| 64 | cls._instance = super(Processor, cls).__new__(cls) |
| 65 | return cls._instance |
| 66 | |
| 67 | def __init__( |
| 68 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected