Skip to content

Commit

Permalink
Typing: Fixup standalone for old Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
erezsh committed Sep 23, 2023
1 parent 0b13396 commit ac4e7a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lark/tools/standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,10 @@
#

from abc import ABC, abstractmethod
from collections.abc import Sequence
from types import ModuleType
from typing import (
TypeVar, Generic, Type, Tuple, List, Dict, Iterator, Collection, Callable, Optional, FrozenSet, Any,
Union, Iterable, IO, TYPE_CHECKING, overload,
Union, Iterable, IO, TYPE_CHECKING, overload, Sequence,
Pattern as REPattern, ClassVar, Set, Mapping
)
###}
Expand Down

0 comments on commit ac4e7a7

Please sign in to comment.