Skip to content

Commit f184a8c

Browse files
committed
Fix mypy
1 parent c77ed63 commit f184a8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sslyze/plugins/session_resumption_plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,9 +384,9 @@ def __init__(
384384
str(ticket_resumption_exception.__class__.__name__), str(ticket_resumption_exception)
385385
)
386386
# We use a SessionResumptionRateScanResult to re-use code in as_text() and as_xml()
387-
self._rate_result = SessionResumptionRateScanResult(
387+
self._rate_result = SessionResumptionRateScanResult( # type: ignore
388388
server_info,
389-
scan_command, # type: ignore
389+
scan_command,
390390
attempted_resum_nb,
391391
successful_resum_nb,
392392
errored_resumptions_list,

0 commit comments

Comments
 (0)