import typing.Callable (python 3.10+)

This commit is contained in:
Mark Riedesel 2021-12-18 08:56:43 -05:00
parent f28cd6edf2
commit 042de7ecb0

View file

@ -1,4 +1,7 @@
from collections import Callable
try:
from collections import Callable
except:
from typing import Callable # Python 3.10+
VERSION = (0, 2012, 0)