Skip to content

Commit

Permalink
Merge branch 'feature/planning/adapt-scheduler-multiple-output' into …
Browse files Browse the repository at this point in the history
…feature/planning/update-tests-multiple-output
  • Loading branch information
victorgarcia98 committed Oct 19, 2023
2 parents 85d4e2e + df04a1c commit 83caea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flexmeasures/data/models/planning/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations

from datetime import datetime, timedelta
from typing import Optional, Type, List, Dict, Any
from typing import Optional, Type, List, Dict, Any, Union

import pandas as pd
from flask import current_app
Expand All @@ -10,7 +10,7 @@
from flexmeasures.utils.coding_utils import deprecated


SchedulerOutputType = pd.Series | List[Dict[str, Any]] | None
SchedulerOutputType = Union[pd.Series, List[Dict[str, Any]], None]


class Scheduler:
Expand Down

0 comments on commit 83caea3

Please sign in to comment.