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
load('TARGET/lib/upload_utility.rb') # library we do NOT want to show executing
load_utility('TARGET/lib/helper_utility.rb') # library we do want to show executing
I expect it should be something like
import upload_utility # library we do NOT want to show executing, assuming it is in the same folder
load_utility('TARGET/lib/helper_utility.py') # library we do want to show executing
though not exactly because Python imports are finicky compared to Ruby loads
The text was updated successfully, but these errors were encountered:
Initial style example at top of https://docs.openc3.com/docs/guides/script-writing#ruby-vs-python-in-cosmos
has the following Python code that references ruby files (and ruby load)
I expect it should be something like
though not exactly because Python
import
s are finicky compared to Rubyload
sThe text was updated successfully, but these errors were encountered: