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

Fixed FURB129 (readlines-in-for): Instead of calling readlines(), iterate over file object directly

This commit is contained in:
Teal Dulcet 2025-03-21 04:55:19 -07:00
parent 6fc049353c
commit 0402b23eb4

View File

@ -150,7 +150,7 @@ def get_mail_users_ex(env, with_archived=False):
dirsize_file = os.path.join(env['STORAGE_ROOT'], f'mail/mailboxes/{domain}/{user}/maildirsize') dirsize_file = os.path.join(env['STORAGE_ROOT'], f'mail/mailboxes/{domain}/{user}/maildirsize')
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.readlines(): for line in f:
(size, count) = line.split(' ') (size, count) = line.split(' ')
box_size += int(size) box_size += int(size)