recording = Recording(
analyzer,
"sample.mp3",
min_conf=0.25,
lat=35.6,
lon=-77.3,
date=datetime(year=2023, month=6, day=27),
is_predicted_for_location_and_date=True,
)
should be
Recording(
analyzer,
"sample.mp3",
min_conf=0.25,
lat=35.6,
lon=-77.3,
date=datetime(year=2023, month=6, day=27),
return_all_detections=True,
)
recording = Recording(
analyzer,
"sample.mp3",
min_conf=0.25,
lat=35.6,
lon=-77.3,
date=datetime(year=2023, month=6, day=27),
is_predicted_for_location_and_date=True,
)
should be
Recording(
analyzer,
"sample.mp3",
min_conf=0.25,
lat=35.6,
lon=-77.3,
date=datetime(year=2023, month=6, day=27),
return_all_detections=True,
)