Skip to content
Closed
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
3 changes: 2 additions & 1 deletion tests/test_documented_enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ class ModeOfTransport(Enum):
feeder = "feeder" # doc: A feeder vessel is a rather small vessel sent by a ship operator and moves in the region

"""A deep sea vessel is a rather large vessel sent by a ship operator and moves between distant regions, e.g.
continents."""
continents.
"""
deep_sea_vessel = "deep_sea_vessel"

# yapf: enable
Expand Down
Loading