Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 17, 2023
1 parent 9cccd85 commit cca232d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions esmf_regrid/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ def __getattr__(self, name):
try:
super().__getattribute__(name)
except AttributeError:
raise NotImplementedError("The method you have chosen hasn't been implemented yet. "
"Must be a member of the Method enum.")
raise NotImplementedError(
"The method you have chosen hasn't been implemented yet. "
"Must be a member of the Method enum."
)

class Method(Enum, metaclass=MethodMeta):
CONSERVATIVE = esmpy.RegridMethod.CONSERVE
Expand Down

0 comments on commit cca232d

Please sign in to comment.