Skip to content
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
- id: reformat-pyproject

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand Down Expand Up @@ -70,21 +70,21 @@ repos:
- id: rst-inline-touching-normal

- repo: https://github.com/python-formate/pyupgrade
rev: bbe3007
rev: v3.3.0
hooks:
- id: pyupgrade
args:
- --py37-plus
- --keep-runtime-typing

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.1
rev: v1.5.6
hooks:
- id: remove-crlf
- id: forbid-crlf

- repo: https://github.com/python-formate/snippet-fmt
rev: v0.1.5
rev: v0.2.0
hooks:
- id: snippet-fmt

Expand Down
2 changes: 0 additions & 2 deletions consolekit/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ def version_callback(ctx: click.Context, param: click.Option, value: int):
click.echo(f"consolekit version {__version__}")

ctx.exit()

"""

return click.option(
Expand Down Expand Up @@ -354,7 +353,6 @@ class MultiValueOption(click.Option):
@click_command()
def main(select: Iterable[str]):
select = list(select)

"""

def __init__(
Expand Down
Loading