Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Nov 5, 2021
1 parent e759697 commit ef5d542
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions django_workflow_system/models/collections/engagement.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def state(self) -> EngagementStateType:
)

for step in all_collection_steps:
pprint(vars(step), "\n")
print(vars(step), "\n")

# Special case to prevent crash when collection has no steps.
if not all_collection_steps:
Expand Down Expand Up @@ -151,7 +151,7 @@ def state(self) -> EngagementStateType:
)

for collection in all_collection_workflows:
pprint("Collection Member", vars(collection), "\n")
print("Collection Member", vars(collection), "\n")

all_engagement_details: QuerySet[
WorkflowCollectionEngagementDetail
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = django-workflow-system
version = 0.9.10
version = 0.9.11
description = A highly customizable workflow system for Django. Create surveys, activities, etc.
description-file = README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def read(f):

setup(
name="django-workflow-system",
version="0.9.10",
version="0.9.11",
description="A highly customizable workflow system for Django. Create surveys, activities, etc.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit ef5d542

Please sign in to comment.