Skip to content

Commit 29247b1

Browse files
possible fix to pre-commit
1 parent c622d6e commit 29247b1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

climada/hazard/tc_tracks.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3034,9 +3034,7 @@ def compute_track_density(
30343034
"""
30353035

30363036
limit_ratio: float = 1.12 * 1.1 # record tc speed 112km/h -> 1.12°/h + 10% margin
3037-
time_value: float = (
3038-
tc_track.data[0].time_step[0].values.astype(float)
3039-
) # Type hint for jenkins
3037+
time_value: float = tc_track.data[0].time_step[0].values.astype(float)
30403038

30413039
if time_value > (res / limit_ratio):
30423040
warnings.warn(

0 commit comments

Comments
 (0)