bt2, babeltrace: apply PEP 8 except for E501 and E722
[babeltrace.git] / bindings / python / babeltrace / babeltrace / reader_event_declaration.py
index 7959bf63314913e190cbcb040d33ec77b4ee0443..a88f37c9d662502c488560b5204a215cabb6f25c 100644 (file)
@@ -25,11 +25,13 @@ import babeltrace.common as common
 import babeltrace.reader_field_declaration as field_declaration
 import collections
 
+
 def _create_event_declaration(event_class):
     event_declaration = EventDeclaration.__new__(EventDeclaration)
     event_declaration._event_class = event_class
     return event_declaration
 
+
 class EventDeclaration:
     """
     An event declaration contains the properties of a class of events,
@@ -138,6 +140,7 @@ class EventDeclaration:
             yield field_declaration._create_field_declaration(field_type, name,
                                                               scope)
 
+
 # Priority of the scopes when searching for event fields
 _SCOPES = [
     common.CTFScope.EVENT_FIELDS,
This page took 0.023577 seconds and 4 git commands to generate.