Skip to content

Commit

Permalink
T Fix type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ymilki authored Nov 17, 2023
1 parent b6bbc3a commit 5be251f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions swagger_spec_validator/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

import yaml
try:
from importlib.resources import files # ignore: type
from importlib.resources import as_file # ignore: type
from importlib.resources import files # type: ignore
from importlib.resources import as_file # type: ignore
except ImportError: # pragma: cover
from importlib_resources import files # ignore: type
from importlib_resources import as_file # ignore: type
from importlib_resources import files # type: ignore
from importlib_resources import as_file # type: ignore


from typing_extensions import ParamSpec
Expand Down

0 comments on commit 5be251f

Please sign in to comment.