Files
speckle-automate-data-shield/main.py
T
Jonathon Broughton 03bc9449c4 Refactor imports for better structure
- Updated import paths to improve clarity.
- Removed unused imports from the initialisation file.
- Organised imports in various modules for consistency.
2025-03-24 16:16:38 +00:00

11 lines
383 B
Python

from speckle_automate import execute_automate_function
from data_shield.inputs import FunctionInputs
from data_shield.function import automate_function
# make sure to call the function with the executor
if __name__ == "__main__":
# NOTE: always pass in the automate function by its reference; do not invoke it!
execute_automate_function(automate_function, FunctionInputs)