Files
proxy-scraper-checker/proxy_scraper_checker/null_context.py
T

12 lines
199 B
Python
Raw Normal View History

2023-02-19 21:44:15 +03:00
from __future__ import annotations
class AsyncNullContext:
__slots__ = ()
async def __aenter__(self) -> None:
pass
2023-08-09 08:07:25 +00:00
async def __aexit__(self, *_: object) -> None:
2023-02-19 21:44:15 +03:00
pass