Skip to content
Snippets Groups Projects
Commit 569e7740 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

generate_lister_loader_lists: Fix black formatting

parent 32287c98
No related branches found
No related tags found
No related merge requests found
......@@ -194,9 +194,10 @@ def write_grants(data, file) -> None:
def main(input_path: Path, lister_output_path: Path, loader_output_path: Path) -> None:
data = parse(input_path)
with lister_output_path.open("wt") as listers_file, loader_output_path.open(
"wt"
) as loaders_file:
with (
lister_output_path.open("wt") as listers_file,
loader_output_path.open("wt") as loaders_file,
):
listers_file.write(LISTERS_PRELUDE.format(source_yml=input_path))
loaders_file.write(LOADERS_PRELUDE.format(source_yml=input_path))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment