Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
nabla-c0d3 committed Apr 3, 2020
1 parent a9ac3b3 commit 2fffb0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sslyze/plugins/scan_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing_extensions import Literal
except ModuleNotFoundError:
# Python 3.8+
from typing import Literal
from typing import Literal # type: ignore

from sslyze.plugins.certificate_info.implementation import CertificateInfoImplementation
from sslyze.plugins.compression_plugin import CompressionImplementation
Expand Down
2 changes: 1 addition & 1 deletion sslyze/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from typing_extensions import TypedDict
except ModuleNotFoundError:
# Python 3.8+
from typing import TypedDict
from typing import TypedDict # type: ignore

from sslyze.errors import ConnectionToServerTimedOut
from sslyze.plugins.certificate_info.implementation import CertificateInfoScanResult, CertificateInfoExtraArguments
Expand Down

0 comments on commit 2fffb0b

Please sign in to comment.