Skip to content

Commit fa5e716

Browse files
pylint
1 parent 4f9f95f commit fa5e716

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
python-version: '3.x'
3939
- name: "Main Script"
4040
run: |
41+
export EXTRA_INSTALL=arraycontext
4142
curl -L -O https://tiker.net/ci-support-v0
4243
. ci-support-v0
4344
build_py_project_in_conda_env

pytato/analysis/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -581,9 +581,7 @@ def update_for_ndarray(self, key_hash: Any, key: Any) -> None:
581581
self.rec(key_hash, key.data.tobytes())
582582

583583
def update_for_TaggableCLArray(self, key_hash: Any, key: Any) -> None:
584-
from arraycontext.impl.pyopencl.taggable_cl_array import (
585-
TaggableCLArray, # pylint: disable=import-error
586-
)
584+
from arraycontext.impl.pyopencl.taggable_cl_array import TaggableCLArray
587585
assert isinstance(key, TaggableCLArray)
588586
self.rec(key_hash, key.get())
589587

0 commit comments

Comments
 (0)