Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix CI by ignore type for None module import (#9709)
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 authored Mar 29, 2021
1 parent fc53a60 commit 5fdff97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/9709.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix type-checking CI on develop.
2 changes: 1 addition & 1 deletion tests/replication/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
try:
import hiredis
except ImportError:
hiredis = None
hiredis = None # type: ignore

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 5fdff97

Please sign in to comment.