pre-commit autoupdate && pre-commit run -a

This commit is contained in:
Guilhem Saurel 2024-03-09 00:25:16 +01:00
parent c510fb6c12
commit 77eb05e84d
3 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
repos: repos:
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.2 rev: v0.3.1
hooks: hooks:
- id: ruff - id: ruff
args: args:

View File

@ -1,4 +1,5 @@
"""Matrix Webhook module entrypoint.""" """Matrix Webhook module entrypoint."""
import logging import logging
from . import app, conf from . import app, conf

View File

@ -1,4 +1,5 @@
"""Configuration for Matrix Webhook.""" """Configuration for Matrix Webhook."""
import argparse import argparse
import os import os