Skip to content
Snippets Groups Projects
Unverified Commit 5fdff977 authored by Andrew Morgan's avatar Andrew Morgan Committed by GitHub
Browse files

Fix CI by ignore type for None module import (#9709)

parent fc53a606
No related branches found
No related tags found
No related merge requests found
Fix type-checking CI on develop.
\ No newline at end of file
...@@ -44,7 +44,7 @@ from tests.server import FakeTransport ...@@ -44,7 +44,7 @@ from tests.server import FakeTransport
try: try:
import hiredis import hiredis
except ImportError: except ImportError:
hiredis = None hiredis = None # type: ignore
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment