File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -398,10 +398,10 @@ def test_cloudevent_repr(specversion):
398
398
"ce-source" : "<source-url>" ,
399
399
}
400
400
event = from_http (headers , "" )
401
- # Testing to make sure event is printable. I could runevent . __repr__() but
401
+ # Testing to make sure event is printable. I could run event . __repr__() but
402
402
# we had issues in the past where event.__repr__() could run but
403
403
# print(event) would fail.
404
- print (event )
404
+ print (event ) # noqa T201
405
405
406
406
407
407
@pytest .mark .parametrize ("specversion" , ["1.0" , "0.3" ])
Original file line number Diff line number Diff line change @@ -383,10 +383,10 @@ def test_cloudevent_repr(specversion):
383
383
"ce-source" : "<source-url>" ,
384
384
}
385
385
event = from_http (headers , "" )
386
- # Testing to make sure event is printable. I could runevent . __repr__() but
386
+ # Testing to make sure event is printable. I could run event . __repr__() but
387
387
# we had issues in the past where event.__repr__() could run but
388
388
# print(event) would fail.
389
- print (event )
389
+ print (event ) # noqa T201
390
390
391
391
392
392
@pytest .mark .parametrize ("specversion" , ["1.0" , "0.3" ])
You can’t perform that action at this time.
0 commit comments