Skip to content

Commit

Permalink
fix_linting
Browse files Browse the repository at this point in the history
  • Loading branch information
elephaint committed Oct 15, 2024
1 parent a7a81ba commit b9dd9a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hierarchicalforecast/methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,7 @@ def fit(self,
intervals_method: Optional[str] = None,
num_samples: Optional[int] = None,
seed: Optional[int] = None,
tags: Dict[str, np.ndarray] = None,
tags: Optional[Dict[str, np.ndarray]] = None,
idx_bottom: Optional[np.ndarray] = None):
# Clip the base forecasts if required to align them with their use in practice.
if self.nonnegative:
Expand Down
2 changes: 1 addition & 1 deletion nbs/methods.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1840,7 +1840,7 @@
" intervals_method: Optional[str] = None,\n",
" num_samples: Optional[int] = None,\n",
" seed: Optional[int] = None, \n",
" tags: Dict[str, np.ndarray] = None,\n",
" tags: Optional[Dict[str, np.ndarray]] = None,\n",
" idx_bottom: Optional[np.ndarray] = None):\n",
" # Clip the base forecasts if required to align them with their use in practice.\n",
" if self.nonnegative:\n",
Expand Down

0 comments on commit b9dd9a5

Please sign in to comment.