🎨 Format Python code with Black

This commit is contained in:
alexAubin 2024-05-11 17:43:08 +00:00 committed by github-actions[bot]
parent a6d1fa5a7a
commit e9f074188a

View file

@ -119,7 +119,10 @@ class Parser:
# Then we keep this bloc and start a new one # Then we keep this bloc and start a new one
# (we ignore helpers containing [internal] ...) # (we ignore helpers containing [internal] ...)
if "[packagingv1]" not in current_block["comments"] and "[internal]" not in current_block["comments"]: if (
"[packagingv1]" not in current_block["comments"]
and "[internal]" not in current_block["comments"]
):
self.blocks.append(current_block) self.blocks.append(current_block)
current_block = { current_block = {
"name": None, "name": None,