Skip to content

Commit

Permalink
fix(bindgen): Do not use PurePosixPath with Python Stream's
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed May 26, 2023
1 parent 43a937c commit fc3df4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def compress_stringify(
]

pipeline_inputs: List[PipelineInput] = [
PipelineInput(InterfaceTypes.BinaryStream, BinaryStream(PurePosixPath(input))),
PipelineInput(InterfaceTypes.BinaryStream, BinaryStream(input)),
]

args: List[str] = ['--memory-io',]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def parse_string_decompress(
]

pipeline_inputs: List[PipelineInput] = [
PipelineInput(InterfaceTypes.BinaryStream, BinaryStream(PurePosixPath(input))),
PipelineInput(InterfaceTypes.BinaryStream, BinaryStream(input)),
]

args: List[str] = ['--memory-io',]
Expand Down

0 comments on commit fc3df4d

Please sign in to comment.