update ci

This commit is contained in:
Jérémy Didderen
2025-03-15 13:41:49 +01:00
committed by Didderen Jérémy
parent 3ffa0fc2e2
commit e9811c6d5d
20 changed files with 316 additions and 121 deletions

View File

@@ -172,7 +172,7 @@ class EbicsConfig(models.Model):
ok = False
if not ok:
raise UserError(
_(
_( # pylint: disable=W8120
"Order Number should comply with the following pattern:"
"\n[A-Z]{1}[A-Z0-9]{3}"
)

View File

@@ -171,8 +171,8 @@ class EbicsFile(models.Model):
if raise_if_not_found:
raise UserError(
_(
"The module to process the '%(ebics_format)s' format is not installed "
"on your system. "
"The module to process the '%(ebics_format)s' format is "
"not installed on your system. "
"\nPlease install module '%(module)s'",
ebics_format=self.format_id.name,
module=module,
@@ -567,7 +567,7 @@ class EbicsFile(models.Model):
"054": "Ntfctn",
}
camt_tag = variant_tags[camt_variant]
stmts = root[0].findall("ns:{}".format(camt_tag), ns)
stmts = root[0].findall(f"ns:{camt_tag}", ns)
for i, stmt in enumerate(stmts):
acc_number = sanitize_account_number(
stmt.xpath(
@@ -590,7 +590,7 @@ class EbicsFile(models.Model):
root_new = deepcopy(root)
entries = False
for j, el in enumerate(root_new[0].findall("ns:{}".format(camt_tag), ns)):
for j, el in enumerate(root_new[0].findall(f"ns:{camt_tag}", ns)):
if j != i:
el.getparent().remove(el)
else:

View File

@@ -437,7 +437,7 @@ class EbicsUserID(models.Model):
err_msg = _("EBICS version mismatch.") + "\n"
err_msg += _("Versions supported by your bank:")
for k in supported_versions:
err_msg += "\n{}: {} ".format(k, supported_versions[k])
err_msg += f"\n{k}: {supported_versions[k]} "
raise UserError(err_msg)
if ebics_version == "H003":
bank._order_number = self.ebics_config_id._get_order_number()
@@ -464,13 +464,13 @@ class EbicsUserID(models.Model):
e = exc_info()
error = _("EBICS Functional Error:")
error += "\n"
error += "{} (code: {})".format(e[1].message, e[1].code)
error += f"{e[1].message} (code: {e[1].code})"
raise UserError(error) from err
except EbicsTechnicalError as err:
e = exc_info()
error = _("EBICS Technical Error:")
error += "\n"
error += "{} (code: {})".format(e[1].message, e[1].code)
error += f"{e[1].message} (code: {e[1].code})"
raise UserError(error) from err
# Send the public authentication and encryption keys to the bank.
@@ -549,7 +549,7 @@ class EbicsUserID(models.Model):
e = exc_info()
error = _("EBICS Functional Error:")
error += "\n"
error += "{} (code: {})".format(e[1].message, e[1].code)
error += f"{e[1].message} (code: {e[1].code})"
raise UserError(error) from err
except Exception as err:
exctype, value = exc_info()[:2]