Skip to content

Commit 1945919

Browse files
pre-commit-ci[bot]radoering
authored andcommitted
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/pre-commit/pre-commit-hooks: v4.3.0 → v4.4.0](pre-commit/pre-commit-hooks@v4.3.0...v4.4.0) - [github.com/pre-commit/pygrep-hooks: v1.9.0 → v1.10.0](pre-commit/pygrep-hooks@v1.9.0...v1.10.0) - [github.com/asottile/pyupgrade: v3.2.2 → v3.3.1](asottile/pyupgrade@v3.2.2...v3.3.1) - [github.com/psf/black: 22.10.0 → 23.1.0](psf/black@22.10.0...23.1.0)
1 parent 1b3a0a6 commit 1945919

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ci:
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.3.0
6+
rev: v4.4.0
77
hooks:
88
- id: trailing-whitespace
99
- id: end-of-file-fixer
@@ -20,7 +20,7 @@ repos:
2020
- id: check-docstring-first
2121

2222
- repo: https://github.com/pre-commit/pygrep-hooks
23-
rev: v1.9.0
23+
rev: v1.10.0
2424
hooks:
2525
- id: python-check-mock-methods
2626
- id: python-use-type-annotations
@@ -46,7 +46,7 @@ repos:
4646
- pep8-naming==0.13.1
4747

4848
- repo: https://github.com/asottile/pyupgrade
49-
rev: v3.2.2
49+
rev: v3.3.1
5050
hooks:
5151
- id: pyupgrade
5252
args: [--py37-plus]
@@ -70,7 +70,7 @@ repos:
7070
args: [--lines-after-imports, "-1"]
7171

7272
- repo: https://github.com/psf/black
73-
rev: 22.10.0
73+
rev: 23.1.0
7474
hooks:
7575
- id: black
7676

src/poetry_plugin_export/command.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ class ExportCommand(GroupCommand):
1818
option(
1919
"format",
2020
"f",
21-
"Format to export to. Currently, only constraints.txt and requirements.txt"
22-
" are supported.",
21+
(
22+
"Format to export to. Currently, only constraints.txt and"
23+
" requirements.txt are supported."
24+
),
2325
flag=False,
2426
default=Exporter.FORMAT_REQUIREMENTS_TXT,
2527
),

0 commit comments

Comments
 (0)