Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates compute_angular_windspeeds to match new cyclostrophic argument approach #145

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion climada_petals/hazard/tc_rainfield.py
Original file line number Diff line number Diff line change
Expand Up @@ -1320,8 +1320,8 @@
# latitude), following formula (2) and the remark in Section 3 of Emanuel & Rotunno (2011).
si_track = si_track.copy(deep=True)
si_track["cp"].values[:] = 5e-5
return compute_angular_windspeeds(

Check warning on line 1323 in climada_petals/hazard/tc_rainfield.py

View check run for this annotation

Jenkins - WCR / Pylint

unexpected-keyword-arg

HIGH: Unexpected keyword argument 'model_kwarg' in function call
Raw output
Used when a function call passes a keyword argument that doesn't correspond toone of the function's parameter names.
si_track, d_centr, mask_centr_close, model, cyclostrophic=cyclostrophic,
si_track, d_centr, mask_centr_close, model, model_kwarg=dict(cyclostrophic=cyclostrophic),
)

def _w_shear(
Expand Down
Loading