fix: add missing commas for syntax correctness across multiple files
Test / test (push) Successful in 15s

This commit is contained in:
Artem Kashaev
2025-12-01 16:19:19 +05:00
parent ed6c656963
commit 1039fba571
23 changed files with 52 additions and 52 deletions
+2 -2
View File
@@ -80,7 +80,7 @@ class ContactService:
)
try:
return await self._repository.list(
params=params, role=context.role, user_id=context.user_id
params=params, role=context.role, user_id=context.user_id,
)
except ContactAccessError as exc:
raise ContactForbiddenError(str(exc)) from exc
@@ -126,7 +126,7 @@ class ContactService:
return contact
try:
return await self._repository.update(
contact, payload, role=context.role, user_id=context.user_id
contact, payload, role=context.role, user_id=context.user_id,
)
except ContactAccessError as exc:
raise ContactForbiddenError(str(exc)) from exc