From 6f9a6a9a99916b82ca765daf5d98e79c7810fa51 Mon Sep 17 00:00:00 2001 From: Aryan Bhati Date: Mon, 18 May 2026 02:18:28 +0530 Subject: [PATCH] fix(ci): resolve indentation issue in parser check --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1947937..13cddba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,10 +60,7 @@ jobs: - name: Verify parser imports working-directory: backend run: | - python -c " - from core.parser.tree_sitter_parser import TreeSitterParser - print('✅ TreeSitterParser imports OK') - " + python -c "from core.parser.tree_sitter_parser import TreeSitterParser; print('✅ TreeSitterParser imports OK')" - name: Run tests working-directory: backend