Skip to content

Commit

Permalink
Flake8 compliant type checking. (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
trexfeathers committed Nov 15, 2023
1 parent abc3856 commit be33a81
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ def test_flat_cubes():
assert mesh_dim == 0
assert grid_x == tgt.coord("longitude")
assert grid_y == tgt.coord("latitude")
assert type(regridder.tgt) == GridInfo
assert type(regridder.src) == MeshInfo
assert type(regridder.tgt) is GridInfo
assert type(regridder.src) is MeshInfo

0 comments on commit be33a81

Please sign in to comment.