Files
speckle-automate-data-shield/main.py
T
Jonathon Broughton 99f43e6b3e Add project configuration files and clean up code
- Added .gitignore to exclude IDE-specific files.
- Created inspection profiles for code quality checks.
- Set up project metadata in various XML files.
- Removed unused dependencies from the lock file.
- Refactored main.py to streamline function calls and imports.
2025-03-23 17:05:51 +00:00

16 lines
379 B
Python

from speckle_automate import (
execute_automate_function,
)
from src.function import automate_function
from src.inputs import FunctionInputs
# 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)