fix: add missing commas for syntax correctness across multiple files
Test / test (push) Successful in 15s
Test / test (push) Successful in 15s
This commit is contained in:
@@ -83,7 +83,7 @@ async def create_contact(
|
||||
service: ContactService = Depends(get_contact_service),
|
||||
) -> ContactRead:
|
||||
data = payload.to_domain(
|
||||
organization_id=context.organization_id, fallback_owner=context.user_id
|
||||
organization_id=context.organization_id, fallback_owner=context.user_id,
|
||||
)
|
||||
try:
|
||||
contact = await service.create_contact(data, context=context)
|
||||
|
||||
Reference in New Issue
Block a user