From 97b2bdd7b88437de122121c627dfc84f335bba56 Mon Sep 17 00:00:00 2001 From: Martin Gabdushev <33594071+martins0n@users.noreply.github.com> Date: Mon, 22 Aug 2022 12:23:18 +0300 Subject: [PATCH] FIX: typeddict import bug (#867) --- CHANGELOG.md | 2 +- etna/models/nn/rnn.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4058507b4..da73fcfec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,7 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - Fix behavior of SARIMAXModel if simple_differencing=True is set ([#837](https://github.com/tinkoff-ai/etna/pull/837)) - -- +- Bug python3.7 and TypedDict import ([867](https://github.com/tinkoff-ai/etna/pull/867)) - - ProphetModel doesn't work with cap and floor regressors ([#842](https://github.com/tinkoff-ai/etna/pull/842)) - Fix problem with encoding category types in OHE ([#843](https://github.com/tinkoff-ai/etna/pull/843)) diff --git a/etna/models/nn/rnn.py b/etna/models/nn/rnn.py index 61c322606..3b72324f7 100644 --- a/etna/models/nn/rnn.py +++ b/etna/models/nn/rnn.py @@ -2,10 +2,10 @@ from typing import Dict from typing import Iterator from typing import Optional -from typing import TypedDict import numpy as np import pandas as pd +from typing_extensions import TypedDict from etna import SETTINGS