@@ -65,7 +65,7 @@ def _link(
65
65
os .chmod (to_path , 0o666 & ~ umask )
66
66
67
67
68
- def copy ( # noqa: PLR0913
68
+ def copy (
69
69
from_fs : "FileSystem" ,
70
70
from_path : Union ["AnyFSPath" , List ["AnyFSPath" ]],
71
71
to_fs : "FileSystem" ,
@@ -129,7 +129,7 @@ def _copy_one(from_p: "AnyFSPath", to_p: "AnyFSPath"):
129
129
list (executor .imap_unordered (_copy_one , from_path , to_path ))
130
130
131
131
132
- def _put ( # noqa: PLR0913
132
+ def _put (
133
133
from_paths : List ["AnyFSPath" ],
134
134
to_fs : "FileSystem" ,
135
135
to_paths : List ["AnyFSPath" ],
@@ -182,7 +182,7 @@ def _put_one(from_path: "AnyFSPath", to_path: "AnyFSPath"):
182
182
list (executor .imap_unordered (_put_one , from_paths , to_paths ))
183
183
184
184
185
- def _get ( # noqa: PLR0913, C901
185
+ def _get ( # noqa: C901
186
186
from_fs : "FileSystem" ,
187
187
from_paths : List ["AnyFSPath" ],
188
188
to_paths : List ["AnyFSPath" ],
@@ -245,7 +245,7 @@ async def _get_one_coro(from_path: "AnyFSPath", to_path: "AnyFSPath"):
245
245
list (executor .imap_unordered (_get_one , from_paths , to_paths ))
246
246
247
247
248
- def _try_links ( # noqa: PLR0913
248
+ def _try_links (
249
249
links : List ["str" ],
250
250
from_fs : "FileSystem" ,
251
251
from_path : "AnyFSPath" ,
@@ -289,7 +289,7 @@ def _try_links( # noqa: PLR0913
289
289
raise OSError (errno .ENOTSUP , "no more link types left to try out" ) from error
290
290
291
291
292
- def transfer ( # noqa: PLR0912, PLR0913, C901,
292
+ def transfer ( # noqa: PLR0912, C901
293
293
from_fs : "FileSystem" ,
294
294
from_path : Union ["AnyFSPath" , List ["AnyFSPath" ]],
295
295
to_fs : "FileSystem" ,
0 commit comments