refactor: improve code readability by formatting arguments across multiple files
Test / test (push) Successful in 15s

This commit is contained in:
Artem Kashaev
2025-12-01 16:25:30 +05:00
parent dc0046c730
commit 1dd7c2f2b8
22 changed files with 161 additions and 49 deletions
+4 -1
View File
@@ -28,7 +28,10 @@ class Scenario:
async def prepare_scenario(session_factory: async_sessionmaker[AsyncSession]) -> Scenario:
async with session_factory() as session:
user = User(
email="owner@example.com", hashed_password="hashed", name="Owner", is_active=True,
email="owner@example.com",
hashed_password="hashed",
name="Owner",
is_active=True,
)
org = Organization(name="Acme LLC")
session.add_all([user, org])