1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-04-15 23:47:24 +02:00

Fixed PLR6104 (non-augmented-assignment): Use += to perform an augmented assignment directly

This commit is contained in:
Teal Dulcet
2025-06-18 04:20:08 -07:00
parent dbabd69218
commit ddee3c6bfd
2 changed files with 2 additions and 2 deletions

View File

@@ -462,7 +462,7 @@ def list_target_files(config):
target_path = target.path
if not target_path.endswith('/'):
target_path = target_path + '/'
target_path += '/'
if target_path.startswith('/'):
target_path = target_path[1:]