Skip to content
This repository was archived by the owner on Apr 25, 2023. It is now read-only.

Commit 0b980d6

Browse files
committed
Fixed too complex issues
1 parent 57ade29 commit 0b980d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ilanguage/Main/lexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def gettoken(string: str, line: int, column: int) -> Optional[LexerToken]:
258258
##############
259259

260260

261-
def lex( # pylint: disable=R0912, R0915
261+
def lex( # pylint: disable=R0912, R0915, R1260
262262
text: Optional[str] = None,
263263
) -> Optional[List[LexerToken]]:
264264
"""Lexes the specified string.

0 commit comments

Comments
 (0)