diff --git a/zipline/gens/sort.py b/zipline/gens/sort.py index 8afd6031..668fd087 100644 --- a/zipline/gens/sort.py +++ b/zipline/gens/sort.py @@ -20,7 +20,6 @@ import logbook from collections import deque from zipline.gens.utils import ( - assert_datasource_unframe_protocol, assert_sort_protocol ) @@ -44,10 +43,6 @@ def date_sort(stream_in, source_ids): # Process incoming streams. for message in stream_in: - # Incoming messages should be the output of DATASOURCE_UNFRAME. - assert_datasource_unframe_protocol(message), \ - "Bad message in date_sort: %s" % message - # Only allow messages from sources we expect. assert message.source_id in sources, "Unexpected source: %s" % message