Skip to content

Commit 2775d29

Browse files
Fix flake8 flop
1 parent 9b060b8 commit 2775d29

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
@@ -210,7 +210,7 @@ cdef class SyclEventRaw(_SyclEventRaw):
210210
""" Waits for a given event or a sequence of events.
211211
"""
212212
if (isinstance(event, collections.abc.Sequence) and
213-
all( (isinstance(el, SyclEventRaw) for el in event) )):
213+
all((isinstance(el, SyclEventRaw) for el in event))):
214214
for e in event:
215215
SyclEventRaw._wait(e)
216216
elif isinstance(event, SyclEventRaw):

0 commit comments

Comments
 (0)