99f43e6b3e
- 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.
16 lines
379 B
Python
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)
|