attendance.py
example script exits with error if --from
or --to
params are used
#157
Labels
bug
Something isn't working
events = await s.get_events(args.f, args.t)
should have been updated to
events = await s.get_events(min_start=args.f, max_start=args.t
when
.get_events()
had third and additional params addedThe text was updated successfully, but these errors were encountered: