Skip to content

Commit

Permalink
fixed ruff issues
Browse files Browse the repository at this point in the history
  • Loading branch information
amandamalk0601 committed Nov 2, 2023
1 parent 41b3e63 commit 29d5d83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,4 +331,4 @@ def test_forecast_fails_if_not_enough_data_for_frequency(self, time_series):
pd.to_datetime("2023-01-01T01:00:00"),
zone="a",
frequency="15T",
)
)
2 changes: 1 addition & 1 deletion vessim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,4 +317,4 @@ def next_update(self, dt: DatetimeLike) -> datetime:
"""
current_index = self._actual.index.asof(dt)
next_iloc = self._actual.index.get_loc(current_index) + 1
return self._actual.index[next_iloc]
return self._actual.index[next_iloc]

0 comments on commit 29d5d83

Please sign in to comment.