Skip to content

Commit

Permalink
* removed print statement
Browse files Browse the repository at this point in the history
preparing 0.0.6 release
  • Loading branch information
skoegl committed Sep 1, 2023
1 parent 4a1cf29 commit b16db10
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion safeeval/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ def execute(self, node: ast.AST, names: Dict[str, Any]) -> Any:
:param names: a mapping of local objects which is used as 'locals' namespace
:return: whatever the expression wants to return
"""
print("execute", list(self.nodes.keys()), node, names)
return self.nodes[type(node)](node, names)

def compile(self, expr: str) -> ast.AST:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="safeeval", # Replace with your own username
version="0.0.5",
version="0.0.6",
author="Mausbrand Informationssysteme GmbH",
author_email="[email protected]",
description="Safely evaluates simple python expressions",
Expand Down

0 comments on commit b16db10

Please sign in to comment.