1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

Fixed RUF059 (unused-unpacked-variable)

This commit is contained in:
Teal Dulcet 2025-03-21 04:55:29 -07:00
parent 0402b23eb4
commit a502f3ea7d

View File

@ -151,7 +151,7 @@ def get_mail_users_ex(env, with_archived=False):
with open(dirsize_file, encoding="utf-8") as f: with open(dirsize_file, encoding="utf-8") as f:
box_quota = int(f.readline().split('S')[0]) box_quota = int(f.readline().split('S')[0])
for line in f: for line in f:
(size, count) = line.split(' ') (size, _count) = line.split(' ')
box_size += int(size) box_size += int(size)
try: try:
@ -389,7 +389,7 @@ def hash_password(pw):
def get_mail_quota(email, env): 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,)) c.execute("SELECT quota FROM users WHERE email=?", (email,))
rows = c.fetchall() rows = c.fetchall()
if len(rows) != 1: if len(rows) != 1: