Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #141

Merged
merged 2 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black

Expand Down
1 change: 1 addition & 0 deletions lib/lsp-devtools/tests/servers/simple.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A very simple language server."""

from lsprotocol import types
from pygls.server import LanguageServer

Expand Down
1 change: 1 addition & 0 deletions lib/pytest-lsp/pytest_lsp/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
details.

"""

import logging
import warnings
from typing import Any
Expand Down
6 changes: 3 additions & 3 deletions lib/pytest-lsp/pytest_lsp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def __init__(self, *args, configuration: Optional[Dict[str, Any]] = None, **kwar
self.diagnostics: Dict[str, List[types.Diagnostic]] = {}
"""Holds any recieved diagnostics."""

self.progress_reports: Dict[
types.ProgressToken, List[types.ProgressParams]
] = {}
self.progress_reports: Dict[types.ProgressToken, List[types.ProgressParams]] = (
{}
)
"""Holds any received progress updates."""

self.error: Optional[Exception] = None
Expand Down
Loading