mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
🎨 Format Python code with Black
This commit is contained in:
parent
a6d1fa5a7a
commit
e9f074188a
1 changed files with 4 additions and 1 deletions
|
@ -119,7 +119,10 @@ class Parser:
|
|||
|
||||
# Then we keep this bloc and start a new one
|
||||
# (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)
|
||||
current_block = {
|
||||
"name": None,
|
||||
|
|
Loading…
Add table
Reference in a new issue