Skip to content

Commit

Permalink
lsp: Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Dec 15, 2024
1 parent 4255a10 commit 6c0cd07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async def document_symbol(
if parent.children is None:
parent.children = [symbol]
else:
parent.children.append(symbol)
parent.children.append(symbol) # type: ignore[attr-defined]

return root

Expand Down

0 comments on commit 6c0cd07

Please sign in to comment.