Import issue with python <= 3.7 #251
elliotschrider
started this conversation in
General
Replies: 1 comment 3 replies
-
|
Thank you for reporting the bug. Yes, you are absolutely correct. Could you open a pull request if you have time? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When using python with version <= 3.7 there is an error due to this import on line 5:
from typing import LiteralChanging this to
from typing_extensions import Literalfor python <= 3.7 allows me to use optuna dashboard perfectly.An easy fix that works for all python versions is:
Would it possible to implement this fix? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions