Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 29, 2024
1 parent 8fee4bb commit 3ec3e93
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
https://www.sphinx-doc.org/en/master/usage/configuration.html
"""

from mutt_language_server import __version__ as version # type: ignore
from mutt_language_server._metainfo import ( # type: ignore
author,
Expand Down
1 change: 1 addition & 0 deletions src/mutt_language_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
r"""Provide ``__version__`` for
`importlib.metadata.version() <https://docs.python.org/3/library/importlib.metadata.html#distribution-versions>`_.
"""

try:
from ._version import __version__, __version_tuple__ # type: ignore
except ImportError: # for setuptools-generate
Expand Down
1 change: 1 addition & 0 deletions src/mutt_language_server/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
r"""This module can be called by
`python -m <https://docs.python.org/3/library/__main__.html>`_.
"""

import logging
from argparse import ArgumentParser, RawDescriptionHelpFormatter
from contextlib import suppress
Expand Down
1 change: 1 addition & 0 deletions src/mutt_language_server/misc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
r"""Misc
========
"""

import re
from typing import Any

Expand Down
1 change: 1 addition & 0 deletions src/mutt_language_server/server.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
r"""Server
==========
"""

import os
import re
from typing import Any
Expand Down
1 change: 1 addition & 0 deletions src/mutt_language_server/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
r"""Utils
=========
"""

import json
import os
from typing import Any
Expand Down
1 change: 1 addition & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
r"""Test utils."""

from mutt_language_server.utils import get_schema


Expand Down

0 comments on commit 3ec3e93

Please sign in to comment.