bug fixes

This commit is contained in:
msramalho
2022-06-08 18:17:25 +02:00
parent 9e871b3bbc
commit bd5146ac3e
4 changed files with 15 additions and 11 deletions

View File

@@ -220,9 +220,9 @@ class Config:
"selenium_config": asdict(self.selenium_config),
"selenium_webdriver": self.webdriver != None,
"s3_config": hasattr(self, "s3_config"),
"s3_private": getattr_or(getattr(self, "s3_config", {}), "private", None),
"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,