Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mhallipelto committed Nov 29, 2022
1 parent b2bb05a commit 7e868c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyinfraformat/core/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def from_gtk_wfs(
def parse_line(line):

if ("properties" in line) and ("ALKUPERAINEN_DATA" in line["properties"]):
hole_str = line["properties"]["ALKUPERAINEN_DATA"].replace("\\r","\n").splitlines()
hole_str = line["properties"]["ALKUPERAINEN_DATA"].replace("\\r", "\n").splitlines()
hole = parse_hole(enumerate(hole_str), robust=robust)
else:
hole = Hole()
Expand Down

0 comments on commit 7e868c8

Please sign in to comment.