@@ -63,7 +63,7 @@ def _make_entry(filesystem, info):
6363
6464class BaseFSSpecPath (URIPath ):
6565 protocol : str
66- filesystem : ' fsspec.AbstractFileSystem'
66+ filesystem : " fsspec.AbstractFileSystem"
6767
6868 def __init__ (self , path : PathLike , * other_paths : PathLike ):
6969 super ().__init__ (path , * other_paths )
@@ -375,7 +375,7 @@ def sync(
375375 self .path_without_protocol , dst_path , recursive = True
376376 )
377377
378- def rename (self , dst_path : PathLike , overwrite : bool = True ) -> "BaseFSSpecPath" :
378+ def rename (self , dst_path : PathLike , overwrite : bool = True ):
379379 """
380380 rename file with fsspec
381381
@@ -384,7 +384,7 @@ def rename(self, dst_path: PathLike, overwrite: bool = True) -> "BaseFSSpecPath"
384384 """
385385 self .filesystem .mv (self .path_without_protocol , dst_path , recursive = False )
386386
387- def move (self , dst_path : PathLike , overwrite : bool = True ) -> "BaseFSSpecPath" :
387+ def move (self , dst_path : PathLike , overwrite : bool = True ):
388388 """
389389 move file/directory with fsspec
390390
@@ -393,7 +393,7 @@ def move(self, dst_path: PathLike, overwrite: bool = True) -> "BaseFSSpecPath":
393393 """
394394 self .filesystem .mv (self .path_without_protocol , dst_path , recursive = True )
395395
396- def unlink (self , missing_ok : bool = False ) -> None :
396+ def unlink (self , missing_ok : bool = False ):
397397 """
398398 Remove the file with fsspec
399399
@@ -403,7 +403,7 @@ def unlink(self, missing_ok: bool = False) -> None:
403403 return
404404 self .filesystem .rm (self .path_without_protocol , recursive = False )
405405
406- def remove (self , missing_ok : bool = False ) -> None :
406+ def remove (self , missing_ok : bool = False ):
407407 """
408408 Remove the file or directory with fsspec
409409
0 commit comments