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 4c44328 commit 329403fCopy full SHA for 329403f
odoo_backup_db_cli/protocols/ftp.py
@@ -10,11 +10,11 @@
10
from odoo_backup_db_cli.utils import CodeError
11
12
13
-class FtpBackupHandler(RemoteBackupHandler, FSBackupHandler):
+class FtpBackupHandler(RemoteBackupHandler, FSBackupHandler): # noqa WPS214
14
"""FTP Backup Handler."""
15
16
- def __init__(self, *args, **kwargs):
17
- super(FtpBackupHandler, self).__init__(*args, **kwargs)
+ def __init__(self, *args, **kwargs): # noqa: D107
+ super().__init__(*args, **kwargs)
18
self.ftp = ftplib.FTP() # noqa: S321
19
20
def _get_required_settings(self):
0 commit comments