Skip to content

Commit

Permalink
Fixes line-to-long lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
acrites committed Nov 8, 2019
1 parent f6ce376 commit be08efd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdks/python/apache_beam/runners/dataflow/dataflow_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,8 @@ def run_TestStream(self, transform_node, options):
element.encoded_element = output_coder.encode(tv.value)
element.timestamp = tv.timestamp.micros
elif isinstance(event, ProcessingTimeEvent):
new_event.processing_time_event.advance_duration = event.advance_by.micros
new_event.processing_time_event.advance_duration = (
event.advance_by.micros)
elif isinstance(event, WatermarkEvent):
new_event.watermark_event.new_watermark = event.new_watermark.micros
serialized_payload = self.byte_array_to_json_string(
Expand Down

0 comments on commit be08efd

Please sign in to comment.