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.
1 parent 5730bb5 commit 7587bd3Copy full SHA for 7587bd3
odoo_backup_db_cli/protocols/s3.py
@@ -14,8 +14,8 @@
14
class S3BackupHandler(RemoteBackupHandler):
15
"""AWS Backup Handler."""
16
17
- def __init__(self): # noqa: D107
18
- super().__init__()
+ def __init__(self, config, env): # noqa: D107
+ super().__init__(config, env)
19
self.bucket = self.env.get('bucket')
20
21
def _get_required_settings(self):
0 commit comments