Skip to content

Value unpacking

Latest
Compare
Choose a tag to compare
@maxme1 maxme1 released this 13 Mar 07:36
· 7 commits to master since this release
  • Added support for value unpacking inside functions:
def func(x):
    a, b = get_pair(x)
    return b - a
  • Now the run-config console command accepts any valid Python expressions:
run-config some_path.config value[0]