(cls)
| 9 | |
| 10 | @classmethod |
| 11 | def existing_modules(cls): |
| 12 | return cls.__existing_modules |
| 13 | |
| 14 | def __init__(self, scope=None): |
| 15 | self._scope = (type(self).__name__ + '_' + uuid.uuid4().hex[:4]) if scope in [None, ''] else scope |
nothing calls this directly
no outgoing calls
no test coverage detected