refactor: formatting fix for PR

Fixed formatting for files in pull request

Refactor COG-678
This commit is contained in:
Igor Ilic 2024-11-28 20:22:55 +01:00
parent 56367cb0c3
commit b56a1dee59
2 changed files with 10 additions and 10 deletions

View file

@ -188,7 +188,7 @@ class SQLAlchemyAdapter():
result = await session.execute(query) result = await session.execute(query)
# Fetch all rows as a list of dictionaries # Fetch all rows as a list of dictionaries
rows = result.mappings().all() # Use `.mappings()` to get key-value pairs rows = result.mappings().all()
return rows return rows
async def execute_query(self, query): async def execute_query(self, query):