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
ifnotself._isExecutable(cmd[0]):
em=f"Error: Did not find executable '", cmd[0], "'."em+=" Make sure it is on the PATH variable of your #operating system."raiseRuntimeError(em)
The assignment of the string to em is a tuple, and thus not able to add the second line ("Make sure it is on the PATH variable of your operating system.")
solution would be:
ifnotself._isExecutable(cmd[0]):
em=f"Error: Did not find executable '{cmd[0]}'."em+=" Make sure it is on the PATH variable of your #operating system."raiseRuntimeError(em)
The text was updated successfully, but these errors were encountered:
in: simulate\base_simulator.py
line 379
The assignment of the string to em is a tuple, and thus not able to add the second line ("Make sure it is on the PATH variable of your operating system.")
solution would be:
The text was updated successfully, but these errors were encountered: