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

14 lines
220 B
Python
Raw Normal View History

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