Skip to content

Commit 58dddee

Browse files
Bump black from 23.12.1 to 24.2.0 (#108)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Johannes Maron <[email protected]>
1 parent 9cad739 commit 58dddee

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

joeflow/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The lean workflow automation framework for machines with heart."""
2+
23
from . import _version
34

45
__version__ = _version.version

joeflow/tasks/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
A task can be considered as a simple transaction that changes state of a workflow.
55
There are two types of tasks, human and machine tasks.
66
"""
7+
78
from joeflow.typing import * # NoQA
89

910
from .human import * # NoQA

joeflow/tasks/human.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Set of reusable human tasks."""
2+
23
from django.views import generic
34

45
from joeflow.views import TaskViewMixin

joeflow/tasks/machine.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Set of reusable machine tasks."""
2+
23
from collections.abc import Iterable
34

45
from django.utils import timezone

linter-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bandit==1.7.7
2-
black==23.12.1
2+
black==24.2.0
33
flake8==7.0.0
44
isort==5.13.2
55
pydocstyle[toml]==6.3.0

tests/test_integration.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""High level integration tests."""
2+
23
from django.urls import reverse
34

45
from joeflow.models import Task

tests/testapp/urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
1. Import the include() function: from django.urls import include, path
1414
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
1515
"""
16+
1617
from django.contrib import admin
1718
from django.urls import include, path
1819

0 commit comments

Comments
 (0)