Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
disable sync method generation
  • Loading branch information
skshetry committed Sep 27, 2022
commit aac94a66cda22b834981511c7dbcfa4629e7ab6b
3 changes: 3 additions & 0 deletions src/morefs/asyn_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ async def copy_asyncfileobj(fsrc, fdst, length=shutil.COPY_BUFSIZE):


class AsyncLocalFileSystem(AsyncFileSystem, LocalFileSystem):
# temporary hack, upstream should support `mirror_sync_methods` instead.
async_impl = False

_chmod = wrap(LocalFileSystem.chmod)
_created = wrap(LocalFileSystem.created)
_info = wrap(LocalFileSystem.info)
Expand Down