Skip to content

Commit

Permalink
Fix pylint ignore for actx imporrt
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Dec 18, 2024
1 parent 1d8252e commit 3f90cbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pytato/analysis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,8 +583,8 @@ def update_for_ndarray(self, key_hash: Any, key: Any) -> None:
self.rec(key_hash, key.data.tobytes())

def update_for_TaggableCLArray(self, key_hash: Any, key: Any) -> None:
from arraycontext.impl.pyopencl.taggable_cl_array import (
TaggableCLArray, # pylint: disable=import-error
from arraycontext.impl.pyopencl.taggable_cl_array import ( # pylint: disable=import-error
TaggableCLArray,
)
assert isinstance(key, TaggableCLArray)
self.rec(key_hash, key.get())
Expand Down

0 comments on commit 3f90cbd

Please sign in to comment.