Skip to content

Commit

Permalink
improved python version compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
attila-balint-kul committed Jun 22, 2023
1 parent 1e2b931 commit c2606a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/enfobench/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.13"
__version__ = "0.0.14"
7 changes: 3 additions & 4 deletions src/enfobench/evaluation/_cross_validate.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
from typing import TYPE_CHECKING, Union, List, Optional
from typing import Union, List, Optional

import pandas as pd
from tqdm import tqdm

from enfobench.utils import steps_in_horizon

if TYPE_CHECKING:
from enfobench.evaluation.client import ForecastClient
from enfobench.evaluation.protocols import Model
from enfobench.evaluation.client import ForecastClient
from enfobench.evaluation.protocols import Model


def generate_cutoff_dates(
Expand Down

0 comments on commit c2606a4

Please sign in to comment.