mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-13 17:52:38 +02:00
chore: ran linting
This commit is contained in:
parent
2f540ee065
commit
dbf575fbd0
23 changed files with 89 additions and 96 deletions
|
|
@ -64,9 +64,11 @@ class _FakeStreamableHttpClient(_StrictFakeMixin):
|
|||
self.handler = handler
|
||||
|
||||
async def __aenter__(self) -> tuple[_FakeEndpoint, _FakeEndpoint, None]:
|
||||
return _FakeEndpoint(self.url, self.handler), _FakeEndpoint(
|
||||
self.url, self.handler
|
||||
), None
|
||||
return (
|
||||
_FakeEndpoint(self.url, self.handler),
|
||||
_FakeEndpoint(self.url, self.handler),
|
||||
None,
|
||||
)
|
||||
|
||||
async def __aexit__(self, exc_type: Any, exc: Any, tb: Any) -> None:
|
||||
del exc_type, exc, tb
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue