Skip to content

Commit

Permalink
Merge branch 'release/0.21.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
floriankrb committed Feb 26, 2024
2 parents 7d3addf + 9496ce8 commit 49a47df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion climetlab/sources/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def cos_solar_zenith_angle(self, date):
return result.flatten()

def __getattr__(self, name):
if not "+" in name and not "-" in name:
if "+" not in name and "-" not in name:
# If we are here, we are looking for a method that does not exist,
# it has to be a method with a time delta.
raise AttributeError(name)
Expand Down
2 changes: 1 addition & 1 deletion climetlab/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.21.2
0.21.3

0 comments on commit 49a47df

Please sign in to comment.