You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Passing an empty tables argument (e.g. to EventTablesUnion) raises a MissingDateError even if data for the given dates are present.
Product
Flowmachine
Version
Current master
To Reproduce
>>> from flowmachine.features import EventsTablesUnion
>>> EventsTablesUnion("2016-01-01", "2016-01-02", columns=["msisdn"], tables=[])
MissingDateError: No data for date: 2016-01-01 - 2016-01-02
Expected behavior
A more meaningful error should be raised to indicate that the tables argument must not be empty.
A fix will be included in an upcoming PR, I just wanted to have an issue for this to have it tracked.
The text was updated successfully, but these errors were encountered:
Describe the bug
Passing an empty
tables
argument (e.g. toEventTablesUnion
) raises aMissingDateError
even if data for the given dates are present.Product
Flowmachine
Version
Current master
To Reproduce
Expected behavior
A more meaningful error should be raised to indicate that the
tables
argument must not be empty.A fix will be included in an upcoming PR, I just wanted to have an issue for this to have it tracked.
The text was updated successfully, but these errors were encountered: