mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge pull request #1833 from YunoHost/actions/black
Format Python code with Black
This commit is contained in:
commit
b5884fe1ed
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
|
# 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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue