Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Oct 9, 2024
1 parent 4f9f95f commit cffda36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
python-version: '3.x'
- name: "Main Script"
run: |
export EXTRA_INSTALL="git+https://github.com/inducer/arraycontext"
curl -L -O https://tiker.net/ci-support-v0
. ci-support-v0
build_py_project_in_conda_env
Expand Down
4 changes: 1 addition & 3 deletions pytato/analysis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,9 +581,7 @@ 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 TaggableCLArray
assert isinstance(key, TaggableCLArray)
self.rec(key_hash, key.get())

Expand Down

0 comments on commit cffda36

Please sign in to comment.