Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed May 10, 2024
1 parent 4a31e92 commit 6cbcf01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/deltalake/fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def open_output_stream(
"""
return pa.PythonFile(self._handler.open_output_stream(path, metadata))

def get_file_info_selector(self, selector: FileSelector) -> List[FileInfo]: # type: ignore
def get_file_info_selector(self, selector: FileSelector) -> List[FileInfo]:
"""
Get info for the files defined by FileSelector.
Expand All @@ -152,5 +152,5 @@ def get_file_info_selector(self, selector: FileSelector) -> List[FileInfo]: # t
selector.base_dir, selector.allow_not_found, selector.recursive
)

def open_append_stream(self, path: str, metadata: Mapping):
def open_append_stream(self, path: str, metadata: Mapping[str, str]) -> None:
raise NotImplementedError

0 comments on commit 6cbcf01

Please sign in to comment.