Skip to content

Commit

Permalink
Move #noqa to first line
Browse files Browse the repository at this point in the history
Co-authored-by: Tom Vo <[email protected]>
  • Loading branch information
acordonez and tomvothecoder authored Nov 27, 2023
1 parent 9b20abd commit 400cebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xcdat/bounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ def keys(self) -> List[str]:
)

def add_missing_bounds( # noqa: C901
self, axes: List[CFAxisKey] = ["X", "Y", "T"] # noqa: C901
) -> xr.Dataset: # noqa: C901
self, axes: List[CFAxisKey] = ["X", "Y", "T"]
) -> xr.Dataset:
"""Adds missing coordinate bounds for supported axes in the Dataset.
This function loops through the Dataset's axes and attempts to adds
Expand Down

0 comments on commit 400cebf

Please sign in to comment.