Skip to content

Commit 2e53c5e

Browse files
committed
Use keyword arguments in function call
1 parent c8edccd commit 2e53c5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pysteps/visualization/animations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def animate(R_obs, nloops=2, timestamps=None, R_fct=None, timestep_min=5,
110110
else:
111111
title = None
112112

113-
st.plt.plot_precip_field(R_obs[i,:,:], False, geodata,
113+
st.plt.plot_precip_field(R_obs[i,:,:], map=False, geodata=geodata,
114114
units=units, colorscale=colorscale,
115115
title=title,
116116
colorbar=colorbar)
@@ -138,7 +138,7 @@ def animate(R_obs, nloops=2, timestamps=None, R_fct=None, timestep_min=5,
138138

139139

140140
st.plt.plot_precip_field(R_fct[n, i - R_obs.shape[0],:,:],
141-
False, geodata, units=units,
141+
map=False, geodata=geodata, units=units,
142142
title=title,
143143
colorscale=colorscale, colorbar=colorbar)
144144
if UV is not None and motion_plot is not None:

0 commit comments

Comments
 (0)