Skip to content

Commit 1aa8fe2

Browse files
authored
feat: delete workflow (#3145)
1 parent c0b676e commit 1aa8fe2

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
@@ -280,7 +280,7 @@ def bulk_create_in_batches(model, data, batch_size=1000):
280280
model.objects.bulk_create(batch)
281281

282282

283-
def get_sha256_hash(_bytes):
283+
def get_sha256_hash(_v: str):
284284
sha256 = hashlib.sha256()
285-
sha256.update(_bytes)
285+
sha256.update(_v.encode())
286286
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.

apps/workflow/workflow/common.py

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

apps/workflow/workflow/i_node.py

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

apps/workflow/workflow/nodes/__init__.py

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

apps/workflow/workflow/tools.py

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

0 commit comments

Comments
 (0)