Skip to content

Commit b81977b

Browse files
committed
Fix missing import
1 parent d05750f commit b81977b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# import weakref # Deferred to single_dispatch()
2020
from operator import itemgetter
2121
from reprlib import recursive_repr
22-
from types import GenericAlias, MethodType, MappingProxyType, UnionType
22+
from types import FunctionType, GenericAlias, MethodType, MappingProxyType, UnionType
2323
from _thread import RLock
2424

2525
################################################################################

0 commit comments

Comments
 (0)