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 ceda3e4 commit f5294a9
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
@@ -1,4 +1,4 @@
from typing import Any, Dict, List, Optional
from typing import Any, Dict, List, Mapping, Optional

import pyarrow as pa
from pyarrow.fs import FileInfo, FileSelector, FileSystemHandler
Expand Down Expand Up @@ -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(path: str, metadata: dict):
def open_append_stream(self, path: str, metadata: Mapping):
raise NotImplementedError

0 comments on commit f5294a9

Please sign in to comment.