Remove NotImplementedType

This commit is contained in:
Alec Delaney 2022-02-03 16:09:26 -05:00
parent 833a2bb2cb
commit bf5f62be65

View file

@ -33,9 +33,7 @@ import re as _re
from micropython import const
try:
from typing import Type, Any, Union, Optional, Tuple, Sequence, List
NotImplementedType = Type[NotImplemented]
from typing import Any, Union, Optional, Tuple, Sequence, List
except ImportError:
pass