We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4fbf22 commit 0c7a757Copy full SHA for 0c7a757
api/utils/storage/BaseStorage.py
@@ -9,7 +9,6 @@ class BaseArchive(ABC):
9
def __init__(self, path, status=None):
10
self.path = path
11
self.status = status
12
- self.query = {}
13
14
def updateStatus(self, type, progress):
15
if self.status:
@@ -76,6 +75,7 @@ def test(url):
76
75
def __init__(self, url, **kwargs):
77
self.url = url
78
self.status = kwargs.get("status", None)
+ self.query = {}
79
80
81
0 commit comments