Skip to content

Commit ae974af

Browse files
committed
fix(cuda.core): drop unused handle cimports flagged by cython-lint
The cdef-class member declarations live in the .pxd, so the .pyx does not need to re-cimport GraphExecHandle, GraphHandle, or StreamHandle. Made-with: Cursor
1 parent 035b09d commit ae974af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cuda_core/cuda/core/graph/_graph_builder.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ from cuda.bindings cimport cydriver
1111
from cuda.core.graph._graph_definition cimport GraphCondition
1212
from cuda.core.graph._utils cimport _attach_host_callback_to_graph
1313
from cuda.core._resource_handles cimport (
14-
GraphExecHandle, GraphHandle, StreamHandle, as_cu, as_py,
14+
as_cu, as_py,
1515
create_graph_exec_handle, create_graph_handle, create_graph_handle_ref,
1616
)
1717
from cuda.core._stream cimport Stream

0 commit comments

Comments
 (0)