We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7993af0 commit 9cfc5ddCopy full SHA for 9cfc5dd
1 file changed
fs/move.py
@@ -1,21 +1,22 @@
1
"""Functions for moving files between filesystems.
2
"""
3
4
-from __future__ import print_function, unicode_literals
+from __future__ import print_function
5
+from __future__ import unicode_literals
6
7
import typing
8
9
from . import open_fs
-from ._pathcompat import commonpath
10
-from .copy import copy_dir, copy_file
+from .copy import copy_dir
11
+from .copy import copy_file
12
from .errors import FSError
13
from .opener import manage_fs
14
from .path import frombase
15
+from ._pathcompat import commonpath
16
17
if typing.TYPE_CHECKING:
- from typing import Text, Union
-
18
from .base import FS
19
+ from typing import Text, Union
20
21
22
def move_fs(
0 commit comments