rclone-api 1.0.10__py2.py3-none-any.whl → 1.0.11__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rclone_api/remote.py +6 -3
- {rclone_api-1.0.10.dist-info → rclone_api-1.0.11.dist-info}/METADATA +1 -1
- {rclone_api-1.0.10.dist-info → rclone_api-1.0.11.dist-info}/RECORD +6 -6
- {rclone_api-1.0.10.dist-info → rclone_api-1.0.11.dist-info}/LICENSE +0 -0
- {rclone_api-1.0.10.dist-info → rclone_api-1.0.11.dist-info}/WHEEL +0 -0
- {rclone_api-1.0.10.dist-info → rclone_api-1.0.11.dist-info}/top_level.txt +0 -0
rclone_api/remote.py
CHANGED
@@ -1,12 +1,15 @@
|
|
1
|
-
from
|
1
|
+
from typing import Any
|
2
2
|
|
3
3
|
|
4
4
|
class Remote:
|
5
5
|
"""Remote (root) directory."""
|
6
6
|
|
7
|
-
def __init__(self, name: str, rclone:
|
7
|
+
def __init__(self, name: str, rclone: Any) -> None:
|
8
|
+
from rclone_api.rclone import Rclone
|
9
|
+
|
10
|
+
assert isinstance(rclone, Rclone)
|
8
11
|
self.name = name
|
9
|
-
self.rclone = rclone
|
12
|
+
self.rclone: Rclone = rclone
|
10
13
|
|
11
14
|
def __str__(self) -> str:
|
12
15
|
return f"{self.name}:"
|
@@ -5,14 +5,14 @@ rclone_api/dir.py,sha256=6rOjqBkITzA0nZE9aIZ15HbCbVDgxluM-LxhSrYrNXU,1487
|
|
5
5
|
rclone_api/dir_listing.py,sha256=NWleKHCCRW7_eh9JfRwE6r3QbjmiHD5ZEGQcd2vm4uY,458
|
6
6
|
rclone_api/file.py,sha256=409neYPfCUKQX2w7Uw7_D0wR2PtH42srNe9u_nnOLxM,925
|
7
7
|
rclone_api/rclone.py,sha256=EUsLW5qcipI5RzhpHUd0PQqQow43m2uKJmNgVR8ZBuU,2859
|
8
|
-
rclone_api/remote.py,sha256=
|
8
|
+
rclone_api/remote.py,sha256=c9hlRKBCg1BFB9MCINaQIoCg10qyAkeqiS4brl8ce-8,343
|
9
9
|
rclone_api/rpath.py,sha256=_k59z-O75hAhpPyUSH4glPEoiYtIS3RUQb7ltU9Ianw,2009
|
10
10
|
rclone_api/types.py,sha256=Yp15HrjwZonSQhE323R0WP7fA4NWqKjAfM7z3OwHpWI,518
|
11
11
|
rclone_api/util.py,sha256=EXnijLLdFHqwoZvHrZdqeM8r6T7ad9-pN7qBN1b0I_g,1465
|
12
12
|
rclone_api/walk.py,sha256=3GKnu9P5aPNiftfoi52U7wo1wixZxwxdqqS0_IlMGCE,2816
|
13
13
|
rclone_api/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
|
14
|
-
rclone_api-1.0.
|
15
|
-
rclone_api-1.0.
|
16
|
-
rclone_api-1.0.
|
17
|
-
rclone_api-1.0.
|
18
|
-
rclone_api-1.0.
|
14
|
+
rclone_api-1.0.11.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
15
|
+
rclone_api-1.0.11.dist-info/METADATA,sha256=kS-htI-Jrl56FEYxndEQm7JRmSWxHP5UpgDG9FL14_w,1245
|
16
|
+
rclone_api-1.0.11.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
|
17
|
+
rclone_api-1.0.11.dist-info/top_level.txt,sha256=EvZ7uuruUpe9RiUyEp25d1Keq7PWYNT0O_-mr8FCG5g,11
|
18
|
+
rclone_api-1.0.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|