We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a02286e commit e010027Copy full SHA for e010027
.github/workflows/python-package.yml
@@ -27,6 +27,8 @@ jobs:
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
30
+ # install typeshed
31
+ python -m pip install types-html5lib types-requests
32
python -m pip install flake8 pytest
33
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
34
ihook/__init__.py
@@ -6,6 +6,9 @@
6
import sys
7
import inspect
8
9
+if typing.TYPE_CHECKING:
10
+ from _typeshed.importlib import LoaderProtocol
11
+
12
# todo: unit tests to improve custom loader
13
14
__all__ = [
0 commit comments