Skip to content

Commit 30bb03f

Browse files
Fix flake8 flop
1 parent 6533536 commit 30bb03f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpctl/_sycl_event.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ cdef class SyclEventRaw(_SyclEventRaw):
203203
""" Waits for a given event or a sequence of events.
204204
"""
205205
if (isinstance(event, collections.abc.Sequence) and
206-
all( (isinstance(el, SyclEventRaw) for el in event) )):
206+
all((isinstance(el, SyclEventRaw) for el in event))):
207207
for e in event:
208208
SyclEventRaw._wait(e)
209209
elif isinstance(event, SyclEventRaw):

0 commit comments

Comments
 (0)