Skip to content

Commit d0c9dd0

Browse files
committed
Remove unused noqa F401 directives in utils/__init__.py
Top-level ruff.toml already disables F401 for all __init__.py files via per-file-ignores, so the noqa comments are redundant and trip RUF100 under ruff 0.15.9.
1 parent 96fe140 commit d0c9dd0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cuda_core/cuda/core/utils/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# SPDX-License-Identifier: Apache-2.0
44

55
from cuda.core._memoryview import (
6-
StridedMemoryView, # noqa: F401
7-
args_viewable_as_strided_memory, # noqa: F401
6+
StridedMemoryView,
7+
args_viewable_as_strided_memory,
88
)
99
from cuda.core.utils._program_cache import (
10-
FileStreamProgramCache, # noqa: F401
11-
ProgramCacheResource, # noqa: F401
12-
SQLiteProgramCache, # noqa: F401
13-
make_program_cache_key, # noqa: F401
10+
FileStreamProgramCache,
11+
ProgramCacheResource,
12+
SQLiteProgramCache,
13+
make_program_cache_key,
1414
)

0 commit comments

Comments
 (0)