Skip to content

Commit 5e38cfd

Browse files
chore(pre-commit.ci): auto fixes
1 parent a0867f0 commit 5e38cfd

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

yalexs/backports/functools.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,12 @@ def __set_name__(self, owner: type[Any], name: str) -> None:
3434
@overload
3535
def __get__( # noqa: E704
3636
self, instance: None, owner: type[Any] | None = None
37-
) -> Any:
38-
...
37+
) -> Any: ...
3938

4039
@overload
4140
def __get__( # noqa: E704
4241
self, instance: Any, owner: type[Any] | None = None
43-
) -> _T:
44-
...
42+
) -> _T: ...
4543

4644
def __get__(self, instance: Any | None, owner: type[Any] | None = None) -> _T | Any:
4745
"""Get."""

yalexs/manager/activity.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Consume the august activity stream."""
2+
23
from __future__ import annotations
34

45
import asyncio

yalexs/manager/const.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Constants."""
2+
23
from __future__ import annotations
34

45
from datetime import timedelta

yalexs/manager/exceptions.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Exceptions for errors."""
2+
23
from __future__ import annotations
34

45

yalexs/manager/gateway.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Handle connection setup and authentication."""
2+
23
from __future__ import annotations
34

45
import asyncio

yalexs/manager/subscriber.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""yalexs subscribers."""
2+
23
from __future__ import annotations
34

45
import asyncio

0 commit comments

Comments
 (0)