From 707d2c7e6ee975a6affdfa2542224d83f0f0de73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Bartosi=C5=84ski?= Date: Wed, 11 Dec 2024 16:38:22 +0100 Subject: [PATCH] Manual codestyle fixes --- inbox/crispin.py | 2 +- inbox/util/testutils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inbox/crispin.py b/inbox/crispin.py index 2b75020ef..fa7fc9b87 100644 --- a/inbox/crispin.py +++ b/inbox/crispin.py @@ -620,7 +620,7 @@ def folder_prefix(self) -> str: # Unfortunately, some servers don't support the NAMESPACE command. # In this case, assume that there's no folder prefix. if self.conn.has_capability("NAMESPACE"): - folder_prefix, folder_separator = self.conn.namespace()[0][0] + folder_prefix, __ = self.conn.namespace()[0][0] return folder_prefix else: return "" diff --git a/inbox/util/testutils.py b/inbox/util/testutils.py index 6bc1022e7..cd8164360 100644 --- a/inbox/util/testutils.py +++ b/inbox/util/testutils.py @@ -49,7 +49,7 @@ def create_test_db() -> None: ) subprocess.check_call( - f"mysql -h {host} -u{user} -p{password} " f'-e "{cmd}"', shell=True + f'mysql -h {host} -u{user} -p{password} -e "{cmd}"', shell=True )