Skip to content
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 apps/common/utils/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def bulk_create_in_batches(model, data, batch_size=1000):
model.objects.bulk_create(batch)


def get_sha256_hash(_bytes):
def get_sha256_hash(_v: str):
sha256 = hashlib.sha256()
sha256.update(_bytes)
sha256.update(_v.encode())
return sha256.hexdigest()
Empty file removed apps/workflow/__init__.py
Empty file.
3 changes: 0 additions & 3 deletions apps/workflow/admin.py

This file was deleted.

6 changes: 0 additions & 6 deletions apps/workflow/apps.py

This file was deleted.

Empty file.
8 changes: 0 additions & 8 deletions apps/workflow/models/__init__.py

This file was deleted.

30 changes: 0 additions & 30 deletions apps/workflow/models/workflow.py

This file was deleted.

3 changes: 0 additions & 3 deletions apps/workflow/tests.py

This file was deleted.

8 changes: 0 additions & 8 deletions apps/workflow/views/__init__.py

This file was deleted.

8 changes: 0 additions & 8 deletions apps/workflow/workflow/__init__.py

This file was deleted.

214 changes: 0 additions & 214 deletions apps/workflow/workflow/common.py

This file was deleted.

54 changes: 0 additions & 54 deletions apps/workflow/workflow/i_node.py

This file was deleted.

8 changes: 0 additions & 8 deletions apps/workflow/workflow/nodes/__init__.py

This file was deleted.

10 changes: 0 additions & 10 deletions apps/workflow/workflow/tools.py

This file was deleted.

Loading
Loading