Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/Quantco/pre-commit-mirrors-black
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black-conda
args:
- --safe
- --target-version=py38
- repo: https://github.com/Quantco/pre-commit-mirrors-flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8-conda
- repo: https://github.com/Quantco/pre-commit-mirrors-isort
Expand All @@ -27,7 +27,7 @@ repos:
args:
- --py38-plus
- repo: https://github.com/Quantco/pre-commit-mirrors-typos
rev: 1.16.26
rev: 1.18.0
hooks:
- id: typos-conda
exclude: "\\.csv$"
2 changes: 1 addition & 1 deletion _typos.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[default.extend-words]
nd = "nd"
nd = "nd"
1 change: 0 additions & 1 deletion src/datajudge/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""datajudge allows to assess whether data from database complies with reference
information."""


import pkg_resources

from .constraints.base import Constraint
Expand Down
4 changes: 2 additions & 2 deletions src/datajudge/db_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ def apply_patches(engine: sa.engine.Engine):


@overload
def lowercase_column_names(column_names: str) -> str:
def lowercase_column_names(column_names: str) -> str: # fmt: off
...


@overload
def lowercase_column_names(column_names: list[str]) -> list[str]:
def lowercase_column_names(column_names: list[str]) -> list[str]: # fmt: off
...


Expand Down