| 1 | initial version |
Use reload instead of closing and reopen PSSE after changes in the custom file imported by the main script.
Example:
import customfile
reload(customfile)
Now, the updated customfile will be imported again inside PSSE.
In Python 3:
import customfile
from importlib import reload
reload(customfile)
whit loves you. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.