MCPcopy Create free account
hub / github.com/tox-dev/filelock / _ForwardingAsyncFileLock

Class _ForwardingAsyncFileLock

tests/test_subclass_options.py:371–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

369
370
371class _ForwardingAsyncFileLock(BaseAsyncFileLock):
372 _lifetime_supported = True
373
374 def __init__(self, lock_file: str, **kwargs: Unpack[_AsyncFileLockOptions]) -> None:
375 super().__init__(lock_file, **kwargs)
376
377 def _acquire(self) -> None:
378 raise NotImplementedError
379
380 def _release(self) -> None:
381 raise NotImplementedError
382
383
384class _FileLockOptions(TypedDict, total=False):

Callers 1

Calls

no outgoing calls

Tested by 1