Skip to content

Commit 72cd582

Browse files
committed
- Run black
1 parent 367b60f commit 72cd582

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/kof_parser/parser.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,10 @@ def _read_kof(
161161
location = self.map_line_to_coordinate_block(line, result_srid)
162162

163163
if not self.use_east_north_order_as_default or swap_easting_northing:
164-
location.point_easting, location.point_northing = location.point_northing, location.point_easting
164+
location.point_easting, location.point_northing = (
165+
location.point_northing,
166+
location.point_easting,
167+
)
165168

166169
if self.file_srid and result_srid != self.file_srid:
167170
if location.point_easting and location.point_northing:

0 commit comments

Comments
 (0)