Skip to content

Commit

Permalink
noqa adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Jan 19, 2024
1 parent 9320f63 commit 380210b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xclim/core/indicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def update(self, other: dict) -> None:
def is_parameter_dict(cls, other: dict) -> bool:
"""Return whether indicator has a parameter dictionary."""
return set(other.keys()).issubset(
cls.__dataclass_fields__.keys() # noqa; # pylint: disable=no-member
cls.__dataclass_fields__.keys() # pylint: disable=no-member
)

def __getitem__(self, key) -> str:
Expand Down

0 comments on commit 380210b

Please sign in to comment.