Skip to content

Commit

Permalink
Bump black from 23.12.1 to 24.2.0 (#108)
Browse files Browse the repository at this point in the history

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Johannes Maron <johannes@maron.family>
  • Loading branch information
dependabot[bot] and codingjoe authored Feb 19, 2024
1 parent 9cad739 commit 58dddee
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions joeflow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The lean workflow automation framework for machines with heart."""

from . import _version

__version__ = _version.version
Expand Down
1 change: 1 addition & 0 deletions joeflow/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
A task can be considered as a simple transaction that changes state of a workflow.
There are two types of tasks, human and machine tasks.
"""

from joeflow.typing import * # NoQA

from .human import * # NoQA
Expand Down
1 change: 1 addition & 0 deletions joeflow/tasks/human.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Set of reusable human tasks."""

from django.views import generic

from joeflow.views import TaskViewMixin
Expand Down
1 change: 1 addition & 0 deletions joeflow/tasks/machine.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Set of reusable machine tasks."""

from collections.abc import Iterable

from django.utils import timezone
Expand Down
2 changes: 1 addition & 1 deletion linter-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bandit==1.7.7
black==23.12.1
black==24.2.0
flake8==7.0.0
isort==5.13.2
pydocstyle[toml]==6.3.0
1 change: 1 addition & 0 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""High level integration tests."""

from django.urls import reverse

from joeflow.models import Task
Expand Down
1 change: 1 addition & 0 deletions tests/testapp/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""

from django.contrib import admin
from django.urls import include, path

Expand Down

0 comments on commit 58dddee

Please sign in to comment.