Reformat Python files with Black v20.8b1
[babeltrace.git] / src / bindings / python / bt2 / bt2 / message_iterator.py
index 56f67a5ad1b268c6425c3f7b7add6ee785b5014e..62c5610c5f788673952f725af0fc84fe63767242 100644 (file)
@@ -104,8 +104,7 @@ class _MessageIteratorConfiguration:
 
 # This is extended by the user to implement component classes in Python.  It
 # is created for a given output port when an input port message iterator is
-# created on the input port on the other side of the connection.  It is also
-# created when an output port message iterator is created on this output port.
+# created on the input port on the other side of the connection.
 #
 # Its purpose is to feed the messages that should go out through this output
 # port.
@@ -391,8 +390,10 @@ class _UserMessageIterator(_MessageIterator):
                     )
                 )
 
-            ptr = native_bt.message_discarded_events_create_with_default_clock_snapshots(
-                self._bt_ptr, stream._ptr, beg_clock_snapshot, end_clock_snapshot
+            ptr = (
+                native_bt.message_discarded_events_create_with_default_clock_snapshots(
+                    self._bt_ptr, stream._ptr, beg_clock_snapshot, end_clock_snapshot
+                )
             )
         else:
             if beg_clock_snapshot is not None or end_clock_snapshot is not None:
@@ -436,8 +437,10 @@ class _UserMessageIterator(_MessageIterator):
                     )
                 )
 
-            ptr = native_bt.message_discarded_packets_create_with_default_clock_snapshots(
-                self._bt_ptr, stream._ptr, beg_clock_snapshot, end_clock_snapshot
+            ptr = (
+                native_bt.message_discarded_packets_create_with_default_clock_snapshots(
+                    self._bt_ptr, stream._ptr, beg_clock_snapshot, end_clock_snapshot
+                )
             )
         else:
             if beg_clock_snapshot is not None or end_clock_snapshot is not None:
This page took 0.02395 seconds and 4 git commands to generate.