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 #32

Merged
merged 2 commits into from
Oct 23, 2023
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/psf/black
rev: "23.9.1"
rev: "23.10.0"
hooks:
- id: black
- id: black-jupyter
Expand All @@ -36,7 +36,7 @@ repos:
- id: isort

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.6.0"
rev: "v1.6.1"
hooks:
- id: mypy
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions src/sweets/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Main module to provide command line interface to the workflows."""

import sys

from .cli import main
Expand Down
1 change: 1 addition & 0 deletions src/sweets/_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# Custom output for this module:
logger.success("Something great happened: highlight this success")
"""

import logging
import time
from collections.abc import Callable
Expand Down
1 change: 1 addition & 0 deletions src/sweets/_show_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
which was adapted from `sklearn.utils._show_versions`
which was adapted from `pandas.show_versions`
"""

from __future__ import annotations

import importlib
Expand Down
Loading