Skip to content

Commit

Permalink
fix: cannot import 'Literal' from 'typing' in py3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
CallumJHays committed Oct 5, 2022
1 parent f48768e commit 8c96b68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mathpad/val.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import TYPE_CHECKING, Any, Literal, Tuple, Type, Union, TypeVar, overload, Callable
from typing import TYPE_CHECKING, Any, Tuple, Union, TypeVar, overload, Callable
import re
from abc import ABC
from typing_extensions import Self
from typing_extensions import Self, Literal

import sympy
import sympy.physics.units as su
Expand Down

0 comments on commit 8c96b68

Please sign in to comment.