Skip to content

Commit 3ec3e93

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 8fee4bb commit 3ec3e93

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

docs/conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
https://www.sphinx-doc.org/en/master/usage/configuration.html
44
"""
5+
56
from mutt_language_server import __version__ as version # type: ignore
67
from mutt_language_server._metainfo import ( # type: ignore
78
author,

src/mutt_language_server/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
r"""Provide ``__version__`` for
22
`importlib.metadata.version() <https://docs.python.org/3/library/importlib.metadata.html#distribution-versions>`_.
33
"""
4+
45
try:
56
from ._version import __version__, __version_tuple__ # type: ignore
67
except ImportError: # for setuptools-generate

src/mutt_language_server/__main__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
r"""This module can be called by
22
`python -m <https://docs.python.org/3/library/__main__.html>`_.
33
"""
4+
45
import logging
56
from argparse import ArgumentParser, RawDescriptionHelpFormatter
67
from contextlib import suppress

src/mutt_language_server/misc/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
r"""Misc
22
========
33
"""
4+
45
import re
56
from typing import Any
67

src/mutt_language_server/server.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
r"""Server
22
==========
33
"""
4+
45
import os
56
import re
67
from typing import Any

src/mutt_language_server/utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
r"""Utils
22
=========
33
"""
4+
45
import json
56
import os
67
from typing import Any

tests/test_utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
r"""Test utils."""
2+
23
from mutt_language_server.utils import get_schema
34

45

0 commit comments

Comments
 (0)