Skip to content

Commit

Permalink
Add missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaselhan committed Dec 18, 2024
1 parent 26681c9 commit 968bc15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/lcfs/web/api/fuel_export/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ async def update_fuel_export(self, fuel_export: FuelExport) -> FuelExport:
"""
Update an existing fuel supply row in the database.
"""
updated_fuel_export = self.db.merge(fuel_export)
updated_fuel_export = await self.db.merge(fuel_export)
await self.db.flush()
await self.db.refresh(
updated_fuel_export,
Expand Down

0 comments on commit 968bc15

Please sign in to comment.