Skip to content

Commit

Permalink
types
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Aug 28, 2023
1 parent bea2372 commit c97452c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions fsspec/generic.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import inspect
import logging
import os
Expand Down Expand Up @@ -315,11 +317,15 @@ async def _copy(
self,
url: list[str],
url2: list[str],
recursive=False,
on_error=None,
maxdepth=None,
batch_size=None,
tempdir=None,
batch_size=20,
on_error="ignore",
**kwargs,
):
if recursive:
raise NotImplementedError
fs = _resolve_fs(url[0], self.method)
fs2 = _resolve_fs(url2[0], self.method)
# not expanding paths atm., assume call is from rsync()
Expand Down

0 comments on commit c97452c

Please sign in to comment.