Skip to content

Commit 036f2bf

Browse files
wip
1 parent c4f8208 commit 036f2bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/parameter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
import re
33
from typing import Any, TypedDict
44
from sympy import sympify
5+
from typing import Set
56

67
class Params(TypedDict):
78
pass
89

9-
def extract_variable_names(*expressions: str) -> set[str]:
10+
def extract_variable_names(*expressions: str) -> Set[str]:
1011
"""
1112
Extract variable names from expressions, excluding reserved words.
1213
"""

0 commit comments

Comments
 (0)