Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaFaer committed Apr 23, 2024
1 parent fbcffbb commit f111714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/common/storages/fsspec_filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def open( # noqa: A003
if self["file_name"].endswith(".gz") and compression_arg == "gzip":
opened_file = gzip.open(self.unc_url, mode=mode, **kwargs)
else:
opened_file = open(self.unc_url, mode=mode, **kwargs)
opened_file = open(self.unc_url, mode=mode, **kwargs) # type: ignore
else:
opened_file = self.fsspec.open(
self["file_url"], mode=mode, compression=compression_arg, **kwargs
Expand Down

0 comments on commit f111714

Please sign in to comment.