Skip to content

Commit 3daaa8a

Browse files
committed
Fix indentation
1 parent 44fafa1 commit 3daaa8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codetext/utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def parse_code(raw_code: str, language: str='Auto', tree_sitter_path: str=None)
104104
if not os.path.exists(ts_lang_path):
105105
logger.warning(f"Not found `{language}.so` in `{load_path}/tree-sitter/`, attemp to build language")
106106
build_language(language, load_path)
107-
language = Language(load_path + f"/tree-sitter/{language}.so", language)
107+
language = Language(load_path + f"/tree-sitter/{language}.so", language)
108108
parser.set_language(language)
109109

110110
if isinstance(raw_code, str):

0 commit comments

Comments
 (0)