Skip to content

Commit

Permalink
🔥 Remove unused code
Browse files Browse the repository at this point in the history
Add kwargs to __init__()
  • Loading branch information
Freed-Wu committed Dec 20, 2023
1 parent 0298baa commit 70e709f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/autotools_language_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from typing import Any

from lsprotocol.types import (
INITIALIZE,
TEXT_DOCUMENT_COMPLETION,
TEXT_DOCUMENT_DEFINITION,
TEXT_DOCUMENT_DID_CHANGE,
Expand All @@ -18,7 +17,6 @@
CompletionParams,
DidChangeTextDocumentParams,
Hover,
InitializeParams,
Location,
MarkupContent,
MarkupKind,
Expand All @@ -42,11 +40,13 @@
class AutotoolsLanguageServer(LanguageServer):
r"""Autotools language server."""

def __init__(self, *args: Any) -> None:
def __init__(self, *args: Any, **kwargs: Any) -> None:
r"""Init.
:param args:
:type args: Any
:param kwargs:
:type kwargs: Any
:rtype: None
"""
super().__init__(*args)
Expand Down

0 comments on commit 70e709f

Please sign in to comment.