Skip to content

Commit 31c629c

Browse files
committed
fix return value
1 parent ce64b8a commit 31c629c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/otf_api/api/bookings/booking_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def get_bookings_new(
8080
starts_after: datetime,
8181
include_canceled: bool = True,
8282
expand: bool = False,
83-
) -> dict:
83+
) -> list[dict]:
8484
"""Retrieve raw bookings data."""
8585
params: dict[str, bool | str] = {
8686
"ends_before": pendulum.instance(ends_before).strftime("%Y-%m-%dT%H:%M:%SZ"),

0 commit comments

Comments
 (0)