Skip to content

Commit

Permalink
Merge pull request #1547 from SublimeLinter/fix-for-flake-37
Browse files Browse the repository at this point in the history
Start importing from `typing` (and make flake happy)
  • Loading branch information
kaste committed Feb 1, 2019
2 parents caaa24e + ba26d9c commit a5f2cde
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lint/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
from .const import WARNING, ERROR


MYPY = False
if MYPY:
from typing import Match


logger = logging.getLogger(__name__)


Expand Down

0 comments on commit a5f2cde

Please sign in to comment.