Skip to content

Commit

Permalink
fix: fix imports when darts is not available (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber authored Apr 19, 2024
1 parent 14d63b0 commit ca20595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conformal_tights/_darts_forecaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
_LikelihoodMixin,
)
except ImportError:
FUTURE_LAGS_TYPE = None
LAGS_TYPE = None
FUTURE_LAGS_TYPE = int
LAGS_TYPE = list[int]

class TimeSeries: ...

Expand Down

0 comments on commit ca20595

Please sign in to comment.