Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

[pre-commit.ci] pre-commit suggestions #16

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.6.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -29,32 +29,32 @@ repos:
- id: detect-private-key

- repo: https://github.com/asottile/pyupgrade
rev: v2.38.2
rev: v3.16.0
hooks:
- id: pyupgrade
args: [--py36-plus]
name: Upgrade code

- repo: https://github.com/PyCQA/docformatter
rev: v1.5.0
rev: v1.7.5
hooks:
- id: docformatter
args: [--in-place, --wrap-summaries=120, --wrap-descriptions=120]

- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.13.2
hooks:
- id: isort
args: [--profile, black]

- repo: https://github.com/psf/black
rev: 22.8.0
rev: 24.4.2
hooks:
- id: black
name: Black code

- repo: https://github.com/executablebooks/mdformat
rev: 0.7.16
rev: 0.7.17
hooks:
- id: mdformat
additional_dependencies:
Expand All @@ -64,17 +64,17 @@ repos:
exclude: ^resources

- repo: https://github.com/asottile/yesqa
rev: v1.4.0
rev: v1.5.0
hooks:
- id: yesqa

- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
rev: 7.1.0
hooks:
- id: flake8

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.0
rev: v4.0.0-alpha.8
hooks:
- id: prettier
exclude: |
Expand Down
1 change: 1 addition & 0 deletions tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
3. in run_once, come up with a way to verify the behavior you wanted.
run_once runs your app through one cycle of the event loop and then terminates
"""

import io
import os
from contextlib import redirect_stdout
Expand Down
1 change: 1 addition & 0 deletions tests/test_slack_command_bot_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
1. Init the component.
2. call .run()
"""

import threading
import time

Expand Down
Loading