Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
chore: break instead of return while looping to process apis
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Jan 14, 2025
1 parent 9f35541 commit 5c7db8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check_phat_nguoi/get_data/get_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async def _get_data_for_plate(self, plate_info: PlateInfo) -> None:
plate_detail: PlateDetail | None = await engine.get_data(plate_info)
if plate_detail:
self._plates_details.add(plate_detail)
return
break

async def get_data(self) -> None:
async with (
Expand Down

0 comments on commit 5c7db8d

Please sign in to comment.