Skip to content

Commit

Permalink
Fix import error for TypedDict
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Normandin <fabrice.normandin@gmail.com>
  • Loading branch information
lebrice committed Jul 29, 2022
1 parent dbdd28e commit cdf5eee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/orion/core/worker/experiment_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

import datetime # noqa
import typing
from typing import Any, TypedDict
from typing import Any

from typing_extensions import TypedDict

if typing.TYPE_CHECKING:
from typing_extensions import Required
Expand Down

0 comments on commit cdf5eee

Please sign in to comment.