Skip to content

Commit 3f90cbd

Browse files
committed
Fix pylint ignore for actx imporrt
1 parent 1d8252e commit 3f90cbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pytato/analysis/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -583,8 +583,8 @@ def update_for_ndarray(self, key_hash: Any, key: Any) -> None:
583583
self.rec(key_hash, key.data.tobytes())
584584

585585
def update_for_TaggableCLArray(self, key_hash: Any, key: Any) -> None:
586-
from arraycontext.impl.pyopencl.taggable_cl_array import (
587-
TaggableCLArray, # pylint: disable=import-error
586+
from arraycontext.impl.pyopencl.taggable_cl_array import ( # pylint: disable=import-error
587+
TaggableCLArray,
588588
)
589589
assert isinstance(key, TaggableCLArray)
590590
self.rec(key_hash, key.get())

0 commit comments

Comments
 (0)