Skip to content

Commit 82375e5

Browse files
committed
fix coverage
1 parent b89bd58 commit 82375e5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bioimageio/spec/_internal/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from ruyaml import Optional
2020
from typing_extensions import ParamSpec
2121

22-
if sys.version_info < (3, 10):
22+
if sys.version_info < (3, 10): # pragma: no cover
2323
SLOTS: Dict[str, bool] = {}
2424
else:
2525
SLOTS = {"slots": True}
@@ -29,7 +29,7 @@
2929
V = TypeVar("V")
3030
NestedDict = Dict[K, "NestedDict[K, V] | V"]
3131

32-
if sys.version_info < (3, 9):
32+
if sys.version_info < (3, 9): # pragma: no cover
3333
from functools import lru_cache as cache
3434

3535
def files(package_name: str):

bioimageio/spec/partner_utils/imjoy/_plugin_parser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pragma: no cover
12
# type: ignore
23
"""ImJoy plugin parser module."""
34
import copy

0 commit comments

Comments
 (0)