Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lark/lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from abc import abstractmethod, ABC
import re
from contextlib import suppress
from typing import (
TypeVar, Type, Dict, Iterator, Collection, Callable, Optional, FrozenSet, Any,
ClassVar, TYPE_CHECKING, overload
Expand All @@ -23,6 +22,7 @@


###{standalone
from contextlib import suppress
from copy import copy

try: # For the standalone parser, we need to make sure that has_interegular is False to avoid NameErrors later on
Expand Down