Skip to content

Commit

Permalink
fix syntax formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeijerdfki committed Oct 6, 2024
1 parent 213aca2 commit 9c6acae
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions tests/python/gRPC/util/msg_abs/msgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,16 +232,10 @@ def polgon_epsg3857(cls, builder: Builder) -> Polygon2D.Polygon2D:
# area around Osnabrueck
# points are expected to be (E, N)
polygon_vertices = []
(polygon_vertices.append(fbh.createPoint2d(builder, X, Y)),)
(
polygon_vertices.append(
fbh.createPoint2d(builder, X + extent, Y)
),
)
(
polygon_vertices.append(
fbh.createPoint2d(builder, X + extent, Y + extent)
),
polygon_vertices.append(fbh.createPoint2d(builder, X, Y))
polygon_vertices.append(fbh.createPoint2d(builder, X + extent, Y))
polygon_vertices.append(
fbh.createPoint2d(builder, X + extent, Y + extent)
)
polygon_vertices.append(fbh.createPoint2d(builder, X, Y + extent))
return fbh.createPolygon2D(builder, height, z, polygon_vertices)
Expand Down

0 comments on commit 9c6acae

Please sign in to comment.