(cls, *args, **kwargs)
| 36 | """Tests for certbot._internal.lock.LockFile.""" |
| 37 | @classmethod |
| 38 | def _call(cls, *args, **kwargs): |
| 39 | from certbot._internal.lock import LockFile |
| 40 | return LockFile(*args, **kwargs) |
| 41 | |
| 42 | def setUp(self): |
| 43 | super().setUp() |
no test coverage detected