Skip to content

Commit 31612ca

Browse files
committed
precommit on test_optics.py
1 parent 63b1561 commit 31612ca

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_optics.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ def test_sunrise_sunset():
2424
try:
2525
sunrise, sunset = sunset_sunrise(time, lat, lon)
2626
except (OSError, ImportError) as e:
27-
pytest.skip(f"Skipping test because skyfield could not download ephemeris data: {e}")
27+
pytest.skip(
28+
f"Skipping test because skyfield could not download ephemeris data: {e}"
29+
)
2830

2931
# Three entries, there should be three outputs
3032
assert len(sunrise) == len(lat)

0 commit comments

Comments
 (0)