Skip to content

Commit 7587bd3

Browse files
Pavel YushkevichPavel Yushkevich
authored andcommitted
[FIX] s3 protocol
1 parent 5730bb5 commit 7587bd3

File tree

1 file changed

+2
-2
lines changed
  • odoo_backup_db_cli/protocols

1 file changed

+2
-2
lines changed

odoo_backup_db_cli/protocols/s3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
class S3BackupHandler(RemoteBackupHandler):
1515
"""AWS Backup Handler."""
1616

17-
def __init__(self): # noqa: D107
18-
super().__init__()
17+
def __init__(self, config, env): # noqa: D107
18+
super().__init__(config, env)
1919
self.bucket = self.env.get('bucket')
2020

2121
def _get_required_settings(self):

0 commit comments

Comments
 (0)