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 05cb0be commit b3a85f7Copy full SHA for b3a85f7
symai/__init__.py
@@ -27,7 +27,7 @@
27
os.environ['TOKENIZERS_PARALLELISM'] = "false"
28
29
30
-SYMAI_VERSION = "0.7.4"
+SYMAI_VERSION = "0.7.5"
31
__version__ = SYMAI_VERSION
32
__root_dir__ = settings.HOME_PATH / '.symai'
33
symai/extended/packages/symrun.py
@@ -101,6 +101,11 @@ def run_alias(self):
101
else:
102
result = expr(*arg_values, **kwargs)
103
104
+ if result is not None:
105
+ self.console(result)
106
+ else:
107
+ self.console("Execution of {} => {} completed successfully.".format(args.alias, package))
108
+
109
return result
110
111
def c(self):
0 commit comments