We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b060b8 commit 2775d29Copy full SHA for 2775d29
dpctl/_sycl_event.pyx
@@ -210,7 +210,7 @@ cdef class SyclEventRaw(_SyclEventRaw):
210
""" Waits for a given event or a sequence of events.
211
"""
212
if (isinstance(event, collections.abc.Sequence) and
213
- all( (isinstance(el, SyclEventRaw) for el in event) )):
+ all((isinstance(el, SyclEventRaw) for el in event))):
214
for e in event:
215
SyclEventRaw._wait(e)
216
elif isinstance(event, SyclEventRaw):
0 commit comments