Lsp hotfix

This commit is contained in:
Cameron Dehning 2023-03-24 16:27:22 +00:00 committed by James Westman
parent bc605c5df8
commit 7e20983b44
2 changed files with 3 additions and 2 deletions

View file

@ -82,7 +82,7 @@ def _tokenize(ui_ml: str):
i = 0
while i < len(ui_ml):
matched = False
for (type, regex) in _TOKENS:
for type, regex in _TOKENS:
match = regex.match(ui_ml, i)
if match is not None: