Skip to content

Commit c5a5b19

Browse files
committed
Fix linting and formatting
1 parent a2835c9 commit c5a5b19

File tree

2 files changed

+32
-12
lines changed

2 files changed

+32
-12
lines changed

databases/backends/sqlite.py

+11-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def __init__(
2929
self._dialect.supports_native_decimal = False
3030
self._pool = SQLitePool(self._database_url, **self._options)
3131

32-
async def connect(self) -> None: ...
32+
async def connect(self) -> None:
33+
...
3334

3435
async def disconnect(self) -> None:
3536
# if it extsis, remove reference to connection to cached in-memory database on disconnect
@@ -141,7 +142,9 @@ async def execute_many(self, queries: typing.List[ClauseElement]) -> None:
141142
for single_query in queries:
142143
await self.execute(single_query)
143144

144-
async def iterate(self, query: ClauseElement) -> typing.AsyncGenerator[typing.Any, None]:
145+
async def iterate(
146+
self, query: ClauseElement
147+
) -> typing.AsyncGenerator[typing.Any, None]:
145148
assert self._connection is not None, "Connection is not acquired"
146149
query_str, args, result_columns, context = self._compile(query)
147150
column_maps = create_column_maps(result_columns)
@@ -191,15 +194,19 @@ def _compile(self, query: ClauseElement) -> typing.Tuple[str, list, tuple]:
191194
compiled._loose_column_name_matching,
192195
)
193196

194-
mapping = {key: "$" + str(i) for i, (key, _) in enumerate(compiled_params, start=1)}
197+
mapping = {
198+
key: "$" + str(i) for i, (key, _) in enumerate(compiled_params, start=1)
199+
}
195200
compiled_query = compiled.string % mapping
196201
result_map = compiled._result_columns
197202

198203
else:
199204
compiled_query = compiled.string
200205

201206
query_message = compiled_query.replace(" \n", " ").replace("\n", " ")
202-
logger.debug("Query: %s Args: %s", query_message, repr(tuple(args)), extra=LOG_EXTRA)
207+
logger.debug(
208+
"Query: %s Args: %s", query_message, repr(tuple(args)), extra=LOG_EXTRA
209+
)
203210
return compiled.string, args, result_map, CompilationContext(execution_context)
204211

205212
@property

tests/test_databases.py

+21-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import gc
66
import itertools
77
import os
8-
import re
98
import sqlite3
109
from typing import MutableMapping
1110
from unittest.mock import MagicMock, patch
@@ -179,7 +178,9 @@ async def test_queries(database_url):
179178
assert result == "example1"
180179

181180
# fetch_val() with no rows
182-
query = sqlalchemy.sql.select(*[notes.c.text]).where(notes.c.text == "impossible")
181+
query = sqlalchemy.sql.select(*[notes.c.text]).where(
182+
notes.c.text == "impossible"
183+
)
183184
result = await database.fetch_val(query=query)
184185
assert result is None
185186

@@ -496,7 +497,9 @@ async def check_transaction(transaction, active_transaction):
496497
assert transaction._transaction is active_transaction
497498

498499
async with database.transaction() as transaction:
499-
await asyncio.create_task(check_transaction(transaction, transaction._transaction))
500+
await asyncio.create_task(
501+
check_transaction(transaction, transaction._transaction)
502+
)
500503

501504

502505
@pytest.mark.parametrize("database_url", DATABASE_URLS)
@@ -509,18 +512,24 @@ async def test_transaction_context_child_task_inheritance_example(database_url):
509512
async with Database(database_url) as database:
510513
async with database.transaction():
511514
# Create a note
512-
await database.execute(notes.insert().values(id=1, text="setup", completed=True))
515+
await database.execute(
516+
notes.insert().values(id=1, text="setup", completed=True)
517+
)
513518

514519
# Change the note from the same task
515-
await database.execute(notes.update().where(notes.c.id == 1).values(text="prior"))
520+
await database.execute(
521+
notes.update().where(notes.c.id == 1).values(text="prior")
522+
)
516523

517524
# Confirm the change
518525
result = await database.fetch_one(notes.select().where(notes.c.id == 1))
519526
assert result.text == "prior"
520527

521528
async def run_update_from_child_task(connection):
522529
# Change the note from a child task
523-
await connection.execute(notes.update().where(notes.c.id == 1).values(text="test"))
530+
await connection.execute(
531+
notes.update().where(notes.c.id == 1).values(text="test")
532+
)
524533

525534
await asyncio.create_task(run_update_from_child_task(database.connection()))
526535

@@ -573,7 +582,9 @@ async def test_transaction_context_sibling_task_isolation_example(database_url):
573582

574583
async def tx1(connection):
575584
async with connection.transaction():
576-
await db.execute(notes.insert(), values={"id": 1, "text": "tx1", "completed": False})
585+
await db.execute(
586+
notes.insert(), values={"id": 1, "text": "tx1", "completed": False}
587+
)
577588
setup.set()
578589
await done.wait()
579590

@@ -875,7 +886,9 @@ async def test_transaction_decorator_concurrent(database_url):
875886

876887
@database.transaction()
877888
async def insert_data():
878-
await database.execute(query=notes.insert().values(text="example", completed=True))
889+
await database.execute(
890+
query=notes.insert().values(text="example", completed=True)
891+
)
879892

880893
async with database:
881894
await asyncio.gather(

0 commit comments

Comments
 (0)