We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4f8208 commit 036f2bfCopy full SHA for 036f2bf
app/parameter.py
@@ -2,11 +2,12 @@
2
import re
3
from typing import Any, TypedDict
4
from sympy import sympify
5
+from typing import Set
6
7
class Params(TypedDict):
8
pass
9
-def extract_variable_names(*expressions: str) -> set[str]:
10
+def extract_variable_names(*expressions: str) -> Set[str]:
11
"""
12
Extract variable names from expressions, excluding reserved words.
13
0 commit comments