Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #1443

Merged
merged 3 commits into from
Feb 22, 2025
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
Expand Up @@ -9,7 +9,7 @@ repos:
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
args: [--config, pyproject.toml]
Expand All @@ -28,14 +28,14 @@ repos:

# The interim replacement for darglint is pydoclint.
- repo: https://github.com/jsh9/pydoclint
rev: 0.6.0
rev: 0.6.2
hooks:
- id: pydoclint
args:
- "--config=pyproject.toml"
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.9.3
rev: v0.9.6
hooks:
- id: ruff
args: [--fix]
3 changes: 1 addition & 2 deletions janitor/biology.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Biology and bioinformatics-oriented data cleaning functions.
"""
"""Biology and bioinformatics-oriented data cleaning functions."""

import pandas as pd
import pandas_flavor as pf
Expand Down
3 changes: 1 addition & 2 deletions janitor/engineering.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Engineering-specific data cleaning functions.
"""
"""Engineering-specific data cleaning functions."""

import numpy as np
import pandas as pd
Expand Down
2 changes: 1 addition & 1 deletion janitor/ml.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Machine learning specific functions. """
"""Machine learning specific functions."""

from typing import Hashable, Iterable, List, Optional, Tuple, Union

Expand Down
2 changes: 1 addition & 1 deletion janitor/spark/backend.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Backend functions for pyspark."""
"""Backend functions for pyspark."""

from functools import wraps

Expand Down
2 changes: 1 addition & 1 deletion janitor/timeseries.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Time series-specific data cleaning functions. """
"""Time series-specific data cleaning functions."""

import itertools
from typing import Dict, Union
Expand Down
Loading