Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaFaer committed Jan 29, 2024
1 parent 00d24d6 commit 2445190
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dlt/common/storages/fsspec_filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ def fsspec(self) -> AbstractFileSystem:
else:
return fsspec_filesystem(self["file_url"], self.credentials)[0]

def open(
def open( # noqa: A003
self, mode: str = "rb", compression: str = "auto", **kwargs: Any
) -> IO[Any]: # noqa: A003
) -> IO[Any]:
"""Open the file as a fsspec file.
This method opens the file represented by this dictionary as a file-like object using
Expand Down

0 comments on commit 2445190

Please sign in to comment.