We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7e2ded commit 718e0e9Copy full SHA for 718e0e9
1 file changed
dcoraid/gui/main.py
@@ -239,13 +239,13 @@ def on_refresh_private_data(self):
239
data = DBExtract()
240
if api.is_available() and api.api_key:
241
try:
242
- ai = APIInterrogator(api=api)
+ db = APIInterrogator(api=api)
243
if self.checkBox_user_following.isChecked():
244
- data += ai.get_datasets_user_following()
+ data += db.get_datasets_user_following()
245
if self.checkBox_user_owned.isChecked():
246
- data += ai.get_datasets_user_owned()
+ data += db.get_datasets_user_owned()
247
if self.checkBox_user_shared.isChecked():
248
- data += ai.get_datasets_user_shared()
+ data += db.get_datasets_user_shared()
249
self.user_filter_chain.set_db_extract(data)
250
except ConnectionTimeoutErrors:
251
self.logger.error(tb.format_exc())
0 commit comments