Skip to content

Commit

Permalink
renaming pylint labels
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Sep 26, 2024
1 parent 4e1522c commit 0c9d513
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PyMPDATA_MPI/impl/boundary_condition_commons.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=too-many-arguments
# pylint: disable=too-many-positional-arguments
""" boundary_condition common functions """

from functools import lru_cache
Expand Down
2 changes: 1 addition & 1 deletion PyMPDATA_MPI/impl/mpi_boundary_condition.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def make_get_peer(_, __):
"""returns (lru-cached) numba-compiled callable."""
raise NotImplementedError()

# pylint: disable=too-many-arguments
# pylint: disable=too-many-positional-arguments
def make_scalar(self, indexers, halo, dtype, jit_flags, dimension_index):
"""returns (lru-cached) Numba-compiled scalar halo-filling callable"""
if self.__mpi_size_one:
Expand Down
2 changes: 1 addition & 1 deletion PyMPDATA_MPI/mpi_periodic.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, size, mpi_dim):

super().__init__(size=size, base=Periodic, mpi_dim=mpi_dim)

# pylint: disable=too-many-arguments
# pylint: disable=too-many-positional-arguments
def make_vector(self, indexers, halo, dtype, jit_flags, dimension_index):
"""returns (lru-cached) Numba-compiled vector halo-filling callable"""
if self.worker_pool_size == 1:
Expand Down

0 comments on commit 0c9d513

Please sign in to comment.