fix some issues linked to asyncio again.

This commit is contained in:
adator
2025-12-14 13:35:20 +01:00
parent 9cd338ecf8
commit 6c797b8efb
4 changed files with 28 additions and 19 deletions

View File

@@ -46,7 +46,7 @@ class IModule(ABC):
"""
@abstractmethod
def create_tables(self) -> None:
async def create_tables(self) -> None:
"""Method that will create the database if it does not exist.
A single Session for this class will be created, which will be used within this class/module.