Skip to content

Commit ebb63a1

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

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/cached_ipaddress/backports/functools.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Functools backports from standard lib."""
2+
23
from __future__ import annotations
34

45
import sys
@@ -33,12 +34,10 @@ def __set_name__(self, owner: type[Any], name: str) -> None:
3334
)
3435

3536
@overload
36-
def __get__(self, instance: None, owner: type[Any] | None = None) -> Any:
37-
...
37+
def __get__(self, instance: None, owner: type[Any] | None = None) -> Any: ...
3838

3939
@overload
40-
def __get__(self, instance: Any, owner: type[Any] | None = None) -> _T:
41-
...
40+
def __get__(self, instance: Any, owner: type[Any] | None = None) -> _T: ...
4241

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

0 commit comments

Comments
 (0)