pull/33/head
msramalho 2022-06-08 11:45:04 +02:00
rodzic a0be3c8a22
commit 1df68c3652
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -218,8 +218,10 @@ class Config:
"tmp_folder": Storage.TMP_FOLDER,
"selenium_config": asdict(self.selenium_config),
"selenium_webdriver": self.webdriver != None,
"s3_config": self.s3_config != None,
"s3_private": getattr_or(self.s3_config, "private", None),
"s3_config": hasattr(self, "s3_config"),
"gd_config": hasattr(self, "gd_config"),
"local_config": hasattr(self, "local_config"),
"s3_private": getattr_or(getattr(self, "s3_config", {}), "private", None),
"wayback_config": self.wayback_config != None,
"telegram_config": self.telegram_config != None,
"gsheets_client": self.gsheets_client != None,