Skip to content

Commit

Permalink
chore: fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikit committed Apr 28, 2024
1 parent fe1ec6b commit 7bc2ed9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fortls/parsers/internal/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
try:
from typing import Iterable, Literal
except ImportError:
from typing_extensions import Literal, Iterable
from typing_extensions import Iterable, Literal

Check warning on line 14 in fortls/parsers/internal/parser.py

View check run for this annotation

Codecov / codecov/patch

fortls/parsers/internal/parser.py#L14

Added line #L14 was not covered by tests

from re import Match, Pattern

Expand Down

0 comments on commit 7bc2ed9

Please sign in to comment.