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.
2 parents ef395af + 2b6eaa2 commit c37eda0Copy full SHA for c37eda0
1 file changed
src/qfieldcloud_sdk/sdk.py
@@ -16,19 +16,19 @@
16
from requests.models import Response
17
18
19
-class DownloadStatus(Enum):
+class DownloadStatus(str, Enum):
20
PENDING = "PENDING"
21
SUCCESS = "SUCCESS"
22
FAILED = "FAILED"
23
24
25
-class UploadStatus(Enum):
+class UploadStatus(str, Enum):
26
27
28
29
30
31
-class DownloadType(Enum):
+class DownloadType(str, Enum):
32
FILES = "files"
33
PACKAGED_FILES = "qfield-files"
34
@@ -291,7 +291,7 @@ def _download_files(
291
finished_cb: Callable = None,
292
) -> List[Dict]:
293
if not filter_glob:
294
- filter_glob = "**/*"
+ filter_glob = "*"
295
296
files_to_download: List[Dict[str, Any]] = []
297
0 commit comments