Meta: Dont finish lines with only one character in lint-ports.py

This commit is contained in:
Cameron Youell 2023-07-17 21:36:31 +10:00 committed by Jelle Raaijmakers
parent 752d9d7c03
commit ae845835d6
Notes: sideshowbarker 2024-07-16 20:21:48 +09:00

View File

@ -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"