Skip to content

Commit

Permalink
chore(deps): update pre-commit hook psf/black to v24 (#250)
Browse files Browse the repository at this point in the history
* chore(deps): update pre-commit hook psf/black to v24

* chore(pre-commit.ci): auto fixes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] and pre-commit-ci[bot] authored Jan 26, 2024
1 parent ca6defb commit 3ae43a8
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.1.0
hooks:
- id: black
- repo: https://github.com/codespell-project/codespell
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Configuration file for the Sphinx documentation builder."""

# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

Expand Down
1 change: 1 addition & 0 deletions src/aiovlc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Control VLC over telnet connection using asyncio."""

__version__ = "0.3.2"
1 change: 1 addition & 0 deletions src/aiovlc/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide a CLI for aiovlc."""

import logging

import click
Expand Down
1 change: 1 addition & 0 deletions src/aiovlc/cli/client_command.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide a client."""

import asyncio
from collections.abc import Awaitable, Callable
import logging
Expand Down
1 change: 1 addition & 0 deletions src/aiovlc/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide a client for aiovlc."""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions src/aiovlc/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide common constants."""

import logging

LOGGER = logging.getLogger(__package__)
1 change: 1 addition & 0 deletions src/aiovlc/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide exceptions for aiovlc."""

from __future__ import annotations


Expand Down
1 change: 1 addition & 0 deletions src/aiovlc/model/command.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide commands for aiovlc."""

from __future__ import annotations

from dataclasses import dataclass, field
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provide common fixtures."""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions tests/model/test_command.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the commands."""

from __future__ import annotations

from typing import Any, Literal
Expand Down
1 change: 1 addition & 0 deletions tests/test_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the client."""

from __future__ import annotations

import asyncio
Expand Down

0 comments on commit 3ae43a8

Please sign in to comment.