From a502f3ea7d05f6c2bca6486cfa9e274b7f850c99 Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Fri, 21 Mar 2025 04:55:29 -0700 Subject: [PATCH] Fixed RUF059 (unused-unpacked-variable) --- management/mailconfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/management/mailconfig.py b/management/mailconfig.py index 770be95f..a8923c57 100644 --- a/management/mailconfig.py +++ b/management/mailconfig.py @@ -151,7 +151,7 @@ def get_mail_users_ex(env, with_archived=False): with open(dirsize_file, encoding="utf-8") as f: box_quota = int(f.readline().split('S')[0]) for line in f: - (size, count) = line.split(' ') + (size, _count) = line.split(' ') box_size += int(size) try: @@ -389,7 +389,7 @@ def hash_password(pw): def get_mail_quota(email, env): - conn, c = open_database(env, with_connection=True) + _conn, c = open_database(env, with_connection=True) c.execute("SELECT quota FROM users WHERE email=?", (email,)) rows = c.fetchall() if len(rows) != 1: