From a04ec6bb4687ad4e45575243fdfbd6ad49c76f01 Mon Sep 17 00:00:00 2001 From: Maximilian Moser <maximilian.moser@tuwien.ac.at> Date: Thu, 8 Feb 2024 15:50:39 +0100 Subject: [PATCH] Reformat with black --- invenio_utilities_tuw/cli/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invenio_utilities_tuw/cli/files.py b/invenio_utilities_tuw/cli/files.py index acd956c..7282fa4 100644 --- a/invenio_utilities_tuw/cli/files.py +++ b/invenio_utilities_tuw/cli/files.py @@ -46,7 +46,7 @@ def get_zombie_files(location): """Get a list of files in the given Location that aren't referenced in the DB.""" # see which files are on disk at the given location all_files = [] - for (p, _, files) in os.walk(location.uri): + for p, _, files in os.walk(location.uri): all_files += [os.path.join(p, f) for f in files] # filter out those files that invenio has knowledge about -- GitLab