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:
parent
0402b23eb4
commit
a502f3ea7d
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user