Skip to content

Commit

Permalink
FIX: typeddict import bug (#867)
Browse files Browse the repository at this point in the history
  • Loading branch information
martins0n authored Aug 22, 2022
1 parent 61d9a80 commit 97b2bdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion etna/models/nn/rnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

1 comment on commit 97b2bdd

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.