interpret_demo: add typing.Literal

pull/369/head
Sebastien Bourdeauducq 2023-12-18 08:50:49 +08:00
parent 8886964776
commit d47534e2ad
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import pathlib
from numpy import int32, int64, uint32, uint64
from scipy import special
from typing import TypeVar, Generic
from typing import TypeVar, Generic, Literal
T = TypeVar('T')
class Option(Generic[T]):
@ -107,6 +107,7 @@ def patch(module):
module.TypeVar = TypeVar
module.ConstGeneric = ConstGeneric
module.Generic = Generic
module.Literal = Literal
module.extern = extern
module.Option = Option
module.Some = Some