Skip to content

Commit 3b69d09

Browse files
Apply linting (some black fixes made)
1 parent bef937e commit 3b69d09

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

cf/field.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9514,8 +9514,12 @@ def domain_mask(self, **kwargs):
95149514
@_inplace_enabled(default=False)
95159515
@_manage_log_level_via_verbosity
95169516
def compute_vertical_coordinates(
9517-
self, default_to_zero=True, strict=True, key=False,
9518-
inplace=False, verbose=None,
9517+
self,
9518+
default_to_zero=True,
9519+
strict=True,
9520+
key=False,
9521+
inplace=False,
9522+
verbose=None,
95199523
):
95209524
"""Compute non-parametric vertical coordinates.
95219525

cf/test/test_formula_terms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,8 @@ def test_compute_vertical_coordinates(self):
765765
# key=True and inplace=True are incompatible inputs
766766
with self.assertRaises(ValueError):
767767
k = f.compute_vertical_coordinates(
768-
key=True, inplace=True, verbose=None)
768+
key=True, inplace=True, verbose=None
769+
)
769770

770771
self.assertTrue(altitude)
771772
self.assertTrue(altitude.has_bounds())

0 commit comments

Comments
 (0)