Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
shahanneda committed Jun 2, 2024
1 parent 5149f94 commit d73d016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/services/implementations/user_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def get_asp_near_location(self, requestor_id, max_distance, limit, offset):
kwargs = {
"id": str(asp_distance["_id"]),
"info": asp_distance["info"],
"distance":round(Decimal(asp_distance["distance"]), 2),
"distance": round(Decimal(asp_distance["distance"]), 2),
}
asp_distance_dtos.append(ASPDistanceDTO(**kwargs))
except Exception as e:
Expand Down

0 comments on commit d73d016

Please sign in to comment.