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
1 change: 0 additions & 1 deletion mh_utils/csv_parser/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,6 @@ def add_new_sample(self, *args, **kwargs) -> Sample: # noqa: PRM002
"""
Add a new sample to the list and return the
:class:`~classes.Sample` object representing it.

""" # noqa: D400

tmp_sample = Sample(*args, **kwargs)
Expand Down
1 change: 0 additions & 1 deletion mh_utils/worklist_parser/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ class Attribute:
\end{multicols}

.. clearpage::

"""

attribute_id: int = attr.ib(converter=int)
Expand Down
Loading