Hey @jo Eber
Thanks for connecting with me offline a couple weeks back. We determined the root cause was a compiler error related to app = func.FunctionApp(auth_level=func.AuthLevel.ANONYMOUS). The auth_level isn't a valid parameter for FunctionApp class. Updating that line from auth_level to http_auth_level corrected the issue. While auth_level is a valid argument for @app.route decorator, I checked the docs and didn't see any examples where app is instantiated with auth_level, but just in case I overlooked it, please share where you saw that, and I'll make sure the doc/learn module gets updated.