Skip to content

Commit

Permalink
🔧 allow types
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterCardenas committed Jan 9, 2024
1 parent 18a9a91 commit df1e459
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pylsp/lsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md
"""
from __future__ import annotations

from enum import Enum
from typing import Optional, TypedDict
Expand Down
2 changes: 2 additions & 0 deletions pylsp/plugins/pylint_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# Copyright 2021- Python Language Server Contributors.

"""Linter plugin for pylint."""
from __future__ import annotations

import collections
import logging
import sys
Expand Down

0 comments on commit df1e459

Please sign in to comment.