Skip to content

Commit e526ab0

Browse files
[pre-commit.ci] pre-commit autoupdate (#20)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 22.3.0 → 22.6.0](psf/black@22.3.0...22.6.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 8876c49 commit e526ab0

File tree

5 files changed

+1
-5
lines changed

5 files changed

+1
-5
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ repos:
6363
args: [--lines-after-imports, "-1"]
6464

6565
- repo: https://github.com/psf/black
66-
rev: 22.3.0
66+
rev: 22.6.0
6767
hooks:
6868
- id: black
6969

src/poetry_plugin_bundle/bundlers/bundler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010

1111
class Bundler:
12-
1312
name: str
1413

1514
def bundle(self, poetry: Poetry, io: IO) -> bool:

src/poetry_plugin_bundle/bundlers/venv_bundler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020

2121
class VenvBundler(Bundler):
22-
2322
name = "venv"
2423

2524
def __init__(self) -> None:

src/poetry_plugin_bundle/console/commands/bundle/venv.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515

1616
class BundleVenvCommand(BundleCommand):
17-
1817
name = "bundle venv"
1918
description = "Bundle the current project into a virtual environment"
2019

tests/bundlers/test_bundler_manager.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99

1010
class MockBundler(Bundler):
11-
1211
name = "mock"
1312

1413

0 commit comments

Comments
 (0)