Skip to content

Commit a4d0034

Browse files
authored
Fix linter (#881)
1 parent 26cc7e7 commit a4d0034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgspec/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# type: ignore
22
import collections
3-
import inspect
43
import sys
54
import typing
65

@@ -75,6 +74,7 @@ def _eval_type(t, globalns, localns):
7574
if sys.version_info >= (3, 10):
7675
from inspect import get_annotations as _get_class_annotations
7776
else:
77+
7878
def _get_class_annotations(cls):
7979
return cls.__dict__.get("__annotations__", {})
8080

0 commit comments

Comments
 (0)