Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#131)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/pycqa/flake8: 6.1.0 → 7.0.0](PyCQA/flake8@6.1.0...7.0.0)
- [github.com/psf/black: 23.12.1 → 24.1.1](psf/black@23.12.1...24.1.1)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Feb 5, 2024
1 parent 66404d2 commit 98c54d7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: debug-statements

- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
additional_dependencies:
Expand All @@ -37,7 +37,7 @@ repos:
args: ["--profile", "black", "--filter-files"]

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black
language_version: python3
Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Nox sessions."""

import os
import tempfile
from typing import Any
Expand Down
1 change: 1 addition & 0 deletions src/karmabot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The PyBites Karmabot for Slack."""

try:
from importlib.metadata import PackageNotFoundError, version # type: ignore
except ImportError: # pragma: no cover
Expand Down
1 change: 1 addition & 0 deletions src/karmabot/commands/doc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""A Karmabot pydoc interface.
"""

import contextlib
import io
import pydoc
Expand Down
1 change: 1 addition & 0 deletions src/karmabot/commands/welcome.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" private command, not callable """

from random import choice

import karmabot.slack
Expand Down

0 comments on commit 98c54d7

Please sign in to comment.