Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Oct 30, 2024
1 parent 5ae8394 commit 3cbcf70
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ def sort_osm_file(input_osm_file_path: str) -> str:
"""
sorted_osm_file_path = input_osm_file_path.replace(".osm", "_sorted.osm")
command = f"osmium sort {input_osm_file_path} -o {sorted_osm_file_path}"
subprocess.run(
command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True
)
subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)

return sorted_osm_file_path

0 comments on commit 3cbcf70

Please sign in to comment.