I am developing python scripts that import other scripts from the same directory. It works as expected, however, any changes to the file I am importing do not update until the Rhino is reloaded.
I’ve tried: reload(myModule), as suggested in similar topics, but it does not do the trick. The new methods are still not available. Any ideas?
I am saving myModule each time, yet.
How would that work though, since Rhino is not seeing updates to the module - I’d have thought to reload myModule rather than a function that doesn’t yet exist? That doesn’t help either.