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 b89bd58 commit 82375e5Copy full SHA for 82375e5
bioimageio/spec/_internal/utils.py
@@ -19,7 +19,7 @@
19
from ruyaml import Optional
20
from typing_extensions import ParamSpec
21
22
-if sys.version_info < (3, 10):
+if sys.version_info < (3, 10): # pragma: no cover
23
SLOTS: Dict[str, bool] = {}
24
else:
25
SLOTS = {"slots": True}
@@ -29,7 +29,7 @@
29
V = TypeVar("V")
30
NestedDict = Dict[K, "NestedDict[K, V] | V"]
31
32
-if sys.version_info < (3, 9):
+if sys.version_info < (3, 9): # pragma: no cover
33
from functools import lru_cache as cache
34
35
def files(package_name: str):
bioimageio/spec/partner_utils/imjoy/_plugin_parser.py
@@ -1,3 +1,4 @@
1
+# pragma: no cover
2
# type: ignore
3
"""ImJoy plugin parser module."""
4
import copy
0 commit comments