We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a reason why pipe_file() silently drops **kwargs here? https://github.com/fsspec/filesystem_spec/blob/master/fsspec/spec.py#L679
pipe_file()
could this be changed to
def pipe_file(self, path, value, **kwargs): """Set the bytes of given file""" with self.open(path, "wb", **kwargs) as f: f.write(value)
Happy to open a pr for this! I'm trying to pass in content_type="image/svg+xml" here and it's being silently ignored.
content_type="image/svg+xml"
fsspec/adlfs#294
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is there a reason why
pipe_file()
silently drops **kwargs here? https://github.com/fsspec/filesystem_spec/blob/master/fsspec/spec.py#L679could this be changed to
Happy to open a pr for this!
I'm trying to pass in
content_type="image/svg+xml"
here and it's being silently ignored.fsspec/adlfs#294
The text was updated successfully, but these errors were encountered: