Skip to content

Commit 05dc56f

Browse files
Drop type check
Co-authored-by: Sadie L. Bartholomew <[email protected]>
1 parent fd3a8a3 commit 05dc56f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cf/data/data.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4437,8 +4437,7 @@ def arctan2(cls, x1, x2):
44374437
44384438
"""
44394439

4440-
if isinstance(getattr(x2, "Units", None), Units):
4441-
x1 = conform_units(x1, x2.Units)
4440+
x1 = conform_units(x1, x2.Units)
44424441

44434442
try:
44444443
y = x1.to_dask_array()

0 commit comments

Comments
 (0)