Skip to content

Commit

Permalink
fix breakages
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Apr 24, 2024
1 parent 9c1a071 commit 11175ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xclim/indices/fire/_ffdi.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
nopython=True,
cache=True,
)
def _keetch_byram_drought_index(p, t, pa, kbdi0, kbdi): # pragma: no cover
def _keetch_byram_drought_index(p, t, pa, kbdi0, kbdi: float): # pragma: no cover
"""Compute the Keetch-Byram drought (KBDI) index.
Parameters
Expand Down Expand Up @@ -343,7 +343,7 @@ def _griffiths_drought_factor_pass(_pr, _smd, _lim):
_griffiths_drought_factor_pass,
pr,
smd,
kwargs=dict(lim=lim),
kwargs=dict(_lim=lim),
input_core_dims=[["time"], ["time"]],
output_core_dims=[["time"]],
dask="parallelized",
Expand Down

0 comments on commit 11175ae

Please sign in to comment.