Skip to content

Commit 329403f

Browse files
author
Vladimir
committed
[IMP] Have fixed all the tests
1 parent 4c44328 commit 329403f

File tree

1 file changed

+3
-3
lines changed
  • odoo_backup_db_cli/protocols

1 file changed

+3
-3
lines changed

odoo_backup_db_cli/protocols/ftp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
from odoo_backup_db_cli.utils import CodeError
1111

1212

13-
class FtpBackupHandler(RemoteBackupHandler, FSBackupHandler):
13+
class FtpBackupHandler(RemoteBackupHandler, FSBackupHandler): # noqa WPS214
1414
"""FTP Backup Handler."""
1515

16-
def __init__(self, *args, **kwargs):
17-
super(FtpBackupHandler, self).__init__(*args, **kwargs)
16+
def __init__(self, *args, **kwargs): # noqa: D107
17+
super().__init__(*args, **kwargs)
1818
self.ftp = ftplib.FTP() # noqa: S321
1919

2020
def _get_required_settings(self):

0 commit comments

Comments
 (0)