Skip to content

Commit bdbbb85

Browse files
committed
tweak coverage expectations again
1 parent 8afb369 commit bdbbb85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wwvb/iersdata.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
path = importlib.resources.files("wwvb") / "iersdata.json"
2121
content = json.loads(path.read_text(encoding="utf-8"))
2222

23-
for location in [ # pragma no branch
23+
for location in [ # pragma no cover
2424
platformdirs.user_data_path("wwvbpy", "unpythonic.net"),
2525
platformdirs.site_data_path("wwvbpy", "unpythonic.net"),
2626
]:
2727
path = location / "iersdata.json"
28-
if path.exists(): # pragma no branch
28+
if path.exists():
2929
content = json.loads(path.read_text(encoding="utf-8"))
3030
break
3131

0 commit comments

Comments
 (0)