From d298df823f000538c6766a510322480129dcf0ad Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Mon, 22 Apr 2024 13:05:41 -0400 Subject: [PATCH] Minor script fix (#10857) Fixes a minor error in the analyze highlight script. Release Notes: - N/A --- script/analyze_highlights.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/analyze_highlights.py b/script/analyze_highlights.py index 968264a7c76739a3733b16d2fea1b2bf19a8cdd7..1fd16f2c0fef849c1c5d4f9dae5bcecfad551ff2 100644 --- a/script/analyze_highlights.py +++ b/script/analyze_highlights.py @@ -50,7 +50,7 @@ def main(): base_dir = Path(__file__).parent.parent core_path = base_dir / 'crates/languages/src' - extension_path = base_dir / 'extensions/astro/languages' + extension_path = base_dir / 'extensions/' core_instances = count_instances(find_highlight_files(core_path)) extension_instances = count_instances(find_highlight_files(extension_path))