Skip to content

Commit 8dcf1d4

Browse files
more lint fixes
1 parent 9f93401 commit 8dcf1d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

loopy/statistics.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
TYPE_CHECKING,
3636
Any,
3737
Callable,
38-
ClassVar,
3938
Generic,
4039
Iterable,
4140
TypeVar,
@@ -2356,7 +2355,7 @@ def _gather_access_footprints_for_single_kernel(
23562355

23572356
def gather_access_footprints(
23582357
t_unit: TranslationUnit, *, ignore_uncountable: bool = False,
2359-
entrypoint: str | None = None) -> Mapping[MemAccess, "isl.Set"]:
2358+
entrypoint: str | None = None) -> Mapping[MemAccess, "isl.Set"]: # noqa: UP037
23602359
"""Return a dictionary mapping ``(var_name, direction)`` to
23612360
:class:`islpy.Set` instances capturing which indices of each the array
23622361
*var_name* are read/written (where *direction* is either ``read`` or

0 commit comments

Comments
 (0)