Skip to content

Commit

Permalink
fix indent: weird vscode bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Feb 16, 2024
1 parent 6b22bb0 commit 040b54f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyogrio/_io.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1733,9 +1733,9 @@ IF CTE_GDAL_VERSION >= (3, 8, 0):
try:
create_fields_from_arrow_schema(destLayer, &schema, options)
except Exception as e:
schema.release(&schema)
stream.release(stream)
raise RuntimeError("Error creating Arrow Schema in OGR layer.") from e
schema.release(&schema)
stream.release(stream)
raise RuntimeError("Error creating Arrow Schema in OGR layer.") from e

while True:
errcode = stream.get_next(stream, &array)
Expand Down

0 comments on commit 040b54f

Please sign in to comment.