From 49927f499c8437086feb49c3ddbb96dd82cd2006 Mon Sep 17 00:00:00 2001 From: Rinary Date: Sat, 12 Oct 2024 12:39:17 +0300 Subject: [PATCH] no more ru symbols in ghost role component --- Tools/_sunrise/Schemas/validate_yml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/_sunrise/Schemas/validate_yml.py b/Tools/_sunrise/Schemas/validate_yml.py index f3a1ff1e9bc..cb28cd4c720 100644 --- a/Tools/_sunrise/Schemas/validate_yml.py +++ b/Tools/_sunrise/Schemas/validate_yml.py @@ -46,7 +46,7 @@ def check_yml(yml_path: str): def filter_specific_keys(content: str) -> dict: result = {} lines = content.splitlines() - key_pattern = re.compile(r'^(name|description|suffix):\s*(.+)') + key_pattern = re.compile(r'^(name|description|suffix|rules):\s*(.+)') for line in lines: match = key_pattern.match(line.strip())