restructure api examples

This commit is contained in:
Vladimir Mandic
2024-06-14 10:27:49 -04:00
parent 3f1c236ce4
commit 945da97d32
21 changed files with 162 additions and 901 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ class Interpreter:
def execute(self, s: str):
try:
exec(s, self.env_globals, self.env_locals)
exec(s, self.env_globals, self.env_locals) # pylint: disable=exec-used
except Exception as e:
print(f'{e.__class__.__name__}: {e}')