File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ def __init__( # type: ignore[no-untyped-def]
186
186
)
187
187
attributes = {k .lower (): v for k , v in attributes .items ()}
188
188
kwargs .update (attributes )
189
- super (CloudEvent , self ).__init__ (data = data , ** kwargs )
189
+ super ().__init__ (data = data , ** kwargs )
190
190
191
191
class Config :
192
192
extra : str = "allow" # this is the way we implement extensions
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def __init__( # type: ignore[no-untyped-def]
134
134
)
135
135
attributes = {k .lower (): v for k , v in attributes .items ()}
136
136
kwargs .update (attributes )
137
- super (CloudEvent , self ).__init__ (data = data , ** kwargs )
137
+ super ().__init__ (data = data , ** kwargs )
138
138
139
139
model_config = ConfigDict (
140
140
extra = "allow" , # this is the way we implement extensions
You can’t perform that action at this time.
0 commit comments