Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
u1f992 committed Jun 18, 2024
1 parent 37d6c60 commit f7d461e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easyeda2kicad/kicad/export_kicad_footprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def generate_kicad_footprint(self) -> None:

# Generates a polygon with coordinates relative to the anchor pad.
path = "".join(
"(xy {} {})".format(round(x, 2), round(y, 2))
f"(xy {round(x, 2)} {round(y, 2)})"
for x, y in [
(x - ki_pad.pos_x, y - ki_pad.pos_y)
for x, y in actual_coords
Expand Down

0 comments on commit f7d461e

Please sign in to comment.