Skip to content

Commit edcee1b

Browse files
committed
address yogesh's review
1 parent 2e9f91e commit edcee1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

xcube_resampling/gridmapping/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _to_int_or_float(x: FloatInt) -> FloatInt:
4848
return xi if math.isclose(xi, xf, rel_tol=1e-5) else xf
4949

5050

51-
def _round_sequence(bbox: Sequence[FloatInt], ndigits=7) -> Sequence[FloatInt]:
51+
def _round_sequence(bbox: Sequence[FloatInt], ndigits: int = 7) -> Sequence[FloatInt]:
5252
return tuple(round(v, ndigits=ndigits) for v in bbox)
5353

5454

0 commit comments

Comments
 (0)