From 710db1e48d9ebf0a01bec8b6d5c9db65c256e514 Mon Sep 17 00:00:00 2001 From: Aryan Bhati Date: Mon, 18 May 2026 01:45:45 +0530 Subject: [PATCH] fix(ci): correct parser import path --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bf408e..1947937 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: working-directory: backend run: | python -c " - from core.parser.ts_parser import TreeSitterParser + from core.parser.tree_sitter_parser import TreeSitterParser print('✅ TreeSitterParser imports OK') "