1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-16 17:47:23 +01:00

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

This commit is contained in:
Teal Dulcet
2025-01-08 05:10:06 -08:00
parent f4cef66d93
commit d09ca4561a
2 changed files with 2 additions and 2 deletions

View File

@@ -463,7 +463,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:]