Skip to content

Commit

Permalink
fix string name
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Abraham <[email protected]>
  • Loading branch information
jabraham17 committed Jun 11, 2024
1 parent 9974877 commit 968c10c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/chpl-language-server/src/chpl-language-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def load_module(module_name: str) -> Optional[ModuleType]:
return module

mods = []
for mod in ["main", "config", "lsp", "driver", "rules"]:
for mod in ["chplcheck", "config", "lsp", "driver", "rules"]:
m = load_module(mod)
if m is None:
return None
Expand Down

0 comments on commit 968c10c

Please sign in to comment.