Skip to content

Commit 689776c

Browse files
committed
style: fix black formatting
1 parent cbb8333 commit 689776c

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

src/snowy_sightings/cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
from snowy_sightings.ebird import recent_observations
1919
from snowy_sightings.notify import send_email
2020

21-
app = typer.Typer(help="Check eBird for recent snowy owl observations.", add_completion=False)
21+
app = typer.Typer(
22+
help="Check eBird for recent snowy owl observations.", add_completion=False
23+
)
2224

2325

2426
def _require_api_key(api_key: str) -> str:

tests/test_check.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,18 @@
55
from snowy_sightings.check import check_new, load_seen, save_seen
66

77
FAKE_OBS = [
8-
{"subId": "S100", "locName": "Plum Island", "obsDt": "2026-02-20 10:00", "howMany": 2},
9-
{"subId": "S101", "locName": "Salisbury Beach", "obsDt": "2026-02-19 14:30", "howMany": 1},
8+
{
9+
"subId": "S100",
10+
"locName": "Plum Island",
11+
"obsDt": "2026-02-20 10:00",
12+
"howMany": 2,
13+
},
14+
{
15+
"subId": "S101",
16+
"locName": "Salisbury Beach",
17+
"obsDt": "2026-02-19 14:30",
18+
"howMany": 1,
19+
},
1020
]
1121

1222

0 commit comments

Comments
 (0)