(cls, *args, **kwargs)
| 120 | third_party_backend = False |
| 121 | |
| 122 | def __new__(cls, *args, **kwargs): |
| 123 | if not args: |
| 124 | return functools.partial(cls, **kwargs) |
| 125 | return super().__new__(cls) |
| 126 | |
| 127 | def __init__( |
| 128 | self, |
no outgoing calls
no test coverage detected