Skip to content

Commit fe7ae15

Browse files
committed
feat: delete workflow
1 parent 5ebfe9b commit fe7ae15

File tree

15 files changed

+2
-399
lines changed

15 files changed

+2
-399
lines changed

apps/common/utils/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def bulk_create_in_batches(model, data, batch_size=1000):
274274
model.objects.bulk_create(batch)
275275

276276

277-
def get_sha256_hash(_bytes):
277+
def get_sha256_hash(_v: str):
278278
sha256 = hashlib.sha256()
279-
sha256.update(_bytes)
279+
sha256.update(_v.encode())
280280
return sha256.hexdigest()

apps/workflow/__init__.py

Whitespace-only changes.

apps/workflow/admin.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

apps/workflow/apps.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

apps/workflow/migrations/__init__.py

Whitespace-only changes.

apps/workflow/models/__init__.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/workflow/models/workflow.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

apps/workflow/tests.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

apps/workflow/views/__init__.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/workflow/workflow/__init__.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)