From d2ddcbbe564633189c51e69dfa2e4a8b9fe162d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ina=20Od=C3=A9n=20=C3=96sterbo?= Date: Thu, 10 Aug 2023 09:25:57 +0200 Subject: [PATCH] pylint lazy logging --- dds_cli/account_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dds_cli/account_manager.py b/dds_cli/account_manager.py index 22618f1a..cedcd11c 100644 --- a/dds_cli/account_manager.py +++ b/dds_cli/account_manager.py @@ -308,4 +308,4 @@ def save_emails(self, unit: str = None) -> None: with email_file.open(mode="w+", encoding="utf-8") as file: file.write("; ".join(emails)) - LOG.info(f"Saved emails to file: {email_file}") + LOG.info("Saved emails to file: %s", email_file)