Skip to content

Commit f98abb5

Browse files
author
Diego Argueta
committed
Merge branch 'pypy-enotsup' of ssh://github.com/dargueta/pyfilesystem2 into pypy-enotsup
2 parents 985188f + d8cffe2 commit f98abb5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

fs/osfs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
IO,
6161
List,
6262
Optional,
63-
MutableSet,
6463
SupportsInt,
6564
Text,
6665
Tuple,
@@ -427,7 +426,7 @@ def _check_copy(self, src_path, dst_path, overwrite=False):
427426
errno.EBADF,
428427
errno.ENOTSOCK,
429428
errno.EOPNOTSUPP,
430-
} # type: MutableSet[int]
429+
}
431430

432431
# PyPy doesn't define ENOTSUP so we have to add it conditionally.
433432
if hasattr(errno, "ENOTSUP"):

0 commit comments

Comments
 (0)