paths : linter reports cleanup

use [] instead of list()
This commit is contained in:
2026-01-28 18:22:37 +01:00
parent cbfbb32b86
commit 2dafcc8c6b

View File

@@ -92,7 +92,7 @@ class PathsManager:
Writes a list of new paths to the file
"""
current_paths = self.get_paths_to_sync()
paths_to_add = list()
paths_to_add = []
# Check if one of the parent is already being synchronised
# If so there is no need to add the child path
for new_path in paths: