mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:54:58 +00:00
Meta: Dont finish lines with only one character in lint-ports.py
This commit is contained in:
parent
752d9d7c03
commit
ae845835d6
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ def get_script_props(dir: str, script_name: str, props: dict, depth: int = 0, ma
|
|||
continue
|
||||
|
||||
if (value.startswith(('"', "'"))):
|
||||
if (value.endswith(value[0])):
|
||||
if (value.endswith(value[0]) and len(value) > 1):
|
||||
value = value[1:-1]
|
||||
else:
|
||||
buffer += "\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue