We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8afb369 commit bdbbb85Copy full SHA for bdbbb85
src/wwvb/iersdata.py
@@ -20,12 +20,12 @@
20
path = importlib.resources.files("wwvb") / "iersdata.json"
21
content = json.loads(path.read_text(encoding="utf-8"))
22
23
-for location in [ # pragma no branch
+for location in [ # pragma no cover
24
platformdirs.user_data_path("wwvbpy", "unpythonic.net"),
25
platformdirs.site_data_path("wwvbpy", "unpythonic.net"),
26
]:
27
path = location / "iersdata.json"
28
- if path.exists(): # pragma no branch
+ if path.exists():
29
30
break
31
0 commit comments