Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Nov 5, 2021
1 parent f2da030 commit ffe9716
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion django_workflow_system/models/collections/engagement.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from django.db.models.expressions import F, Window
from django.db.models.functions import RowNumber
from django.db.models.query import QuerySet
from pprint import pprint

import jsonschema
from django.conf import settings
Expand Down Expand Up @@ -118,7 +119,7 @@ def state(self) -> EngagementStateType:
)

for step in all_collection_steps:
print(step.__dict__)
pprint(vars(step))

# Special case to prevent crash when collection has no steps.
if not all_collection_steps:
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.8
version = 0.9.9
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.8",
version="0.9.9",
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 ffe9716

Please sign in to comment.