Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pylsp/plugins/pyflakes_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ def syntaxError(self, _filename, msg, lineno, offset, text):
# We've seen that lineno and offset can sometimes be None
lineno = lineno or 1
offset = offset or 0
# could be None if the error is due to an invalid encoding
# see e.g. https://github.com/python-lsp/python-lsp-server/issues/429
text = text or ""

err_range = {
"start": {"line": lineno - 1, "character": offset},
Expand Down