You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running this via paramit will set both branches to have the same assignment. a could be a variable for computation that doesn't need to take an input value:
b = 20
if b > 10:
a = 'b is greater than 10'
else:
a = 'b is less than 10'
The generated py in the report:
b = 20
if b > 10:
a = 'b is less than 10'
else:
a = 'b is less than 10'
The toml file:
[global]
b = "20"
a = "b is less than 10"
[meta]
version = "0.2.1"
created_on = "2024-08-30 16:39:18.816170"
script_path = "/home/test.py"
python_path = "/home/envs/test/bin/python"
The text was updated successfully, but these errors were encountered:
Running this via
paramit
will set both branches to have the same assignment.a
could be a variable for computation that doesn't need to take an input value:The generated py in the report:
The toml file:
The text was updated successfully, but these errors were encountered: