From 401053f45dc70779a7b5d4e0ef71c8f19998d5e2 Mon Sep 17 00:00:00 2001 From: "Jens W. Klein" Date: Wed, 5 Feb 2025 14:39:34 +0100 Subject: [PATCH] [fix] Allow api usage with dot access from wallet_google namespace --- src/edutap/wallet_google/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/edutap/wallet_google/__init__.py b/src/edutap/wallet_google/__init__.py index ffd5ffc..3e052a5 100644 --- a/src/edutap/wallet_google/__init__.py +++ b/src/edutap/wallet_google/__init__.py @@ -1,2 +1,4 @@ -# import to register models +# import to enable direkt usage import from parent namespace +# models also registers the models in the registry +from . import api # noqa: F401 from . import models # noqa: F401