i try to use Sikuli. I will have 2 Files. One of them will be the "main" file and one of then is for functions.
The main-file i have called "test" and the file for die Function i have called "importi".
If i run the Mainfile i will get the error: [error] Fehlermeldung: Traceback (most recent call last): File "C:...\Temp\sikuli-tmp8331266965127754273.py",line 3, in importi.help() AttributeError: 'module'object has no attribute 'hallo'
This is my Code of the main-file:
import importi
importi.hallo()
and this is the code of the File with the function:
anzeige = "Hallo"
def help():
popup(anzeige)