Skip to content

Commit fd55065

Browse files
committed
fix: make prettier and linter happy
Signed-off-by: Yeganathan S <63534555+skwowet@users.noreply.github.com>
1 parent 6d57371 commit fd55065

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

services/apps/git_integration/src/crowdgit/services/affiliation/affiliation_service.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -509,9 +509,7 @@ async def process_chunk(chunk: str):
509509
pydantic_model=AffiliationParseOutput,
510510
)
511511

512-
chunk_results = await asyncio.gather(
513-
*[process_chunk(chunk) for chunk in chunks]
514-
)
512+
chunk_results = await asyncio.gather(*[process_chunk(chunk) for chunk in chunks])
515513

516514
affiliations: list[AffiliationInfoItem] = []
517515
total_cost = 0.0

0 commit comments

Comments
 (0)