Source code for viiapackage.tools.start_tool.viia_start

### ===================================================================================================================
###   START TOOL
### ===================================================================================================================
# Copyright ©VIIA 2025

### ===================================================================================================================
###    1. Import modules
### ===================================================================================================================

# References for functions and classes in the viiaPackage
from viiapackage.tools.start_tool.viia_start_gui import StartGUI


### ===================================================================================================================
###    2. NLKA assessment for VIIA
### ===================================================================================================================

[docs]def viia_start_tool(): """ This function is developed to assist with the starting process for the VIIA-object. The tool should be executed in a python-editor (like PyCharm) and can't be used in DIANA. """ # Initialise the GUI for the NLKA assessment StartGUI.start()
### =================================================================================================================== ### 3. Run this tool as script ### =================================================================================================================== if __name__ == '__main__': viia_start_tool() ### =================================================================================================================== ### 4. End of script ### ===================================================================================================================