Skip to content

Commit 581eaa3

Browse files
authored
Merge pull request #20 from CNSeniorious000/master
Specify exports in `__all__` to prevent `pyright` errors
2 parents 449b394 + cc1076c commit 581eaa3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pure_eval/__init__.py

+8
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,11 @@
66
except ImportError:
77
# version.py is auto-generated with the git tag when building
88
__version__ = "???"
9+
10+
__all__ = [
11+
"Evaluator",
12+
"CannotEval",
13+
"group_expressions",
14+
"is_expression_interesting",
15+
"getattr_static",
16+
]

0 commit comments

Comments
 (0)