Skip to content

Commit

Permalink
Missed two "dataclass" keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
awicenec committed May 7, 2023
1 parent ae60b2b commit 6ea8df4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions daliuge-translator/dlg/dropmake/lg_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ def _create_test_drop_spec(self, oid, rank, kwargs) -> dropdict:
"oid": oid,
"categoryType": CategoryType.DATA,
"category": drop_type,
"dataclass": "dlg.data.drops.memory.InMemoryDROP",
"dropclass": "dlg.data.drops.memory.InMemoryDROP",
"storage": drop_type,
"rank": rank,
"reprodata": self.jd.get("reprodata", {}),
Expand Down Expand Up @@ -1119,7 +1119,7 @@ def _create_test_drop_spec(self, oid, rank, kwargs) -> dropdict:
{
"oid": "{0}-grp-data".format(oid),
"categoryType": CategoryType.DATA,
"dataclass": "dlg.data.drops.memory.InMemoryDROP",
"dropclass": "dlg.data.drops.memory.InMemoryDROP",
"name": "grpdata",
"weight": dw,
"rank": rank,
Expand Down Expand Up @@ -1157,7 +1157,7 @@ def _create_test_drop_spec(self, oid, rank, kwargs) -> dropdict:
{
"oid": "{0}-gather-data".format(oid),
"categoryType": CategoryType.DATA,
"dataclass": "dlg.data.drops.memory.InMemoryDROP",
"dropclass": "dlg.data.drops.memory.InMemoryDROP",
"name": "gthrdt",
"weight": dw,
"rank": rank,
Expand All @@ -1179,7 +1179,7 @@ def _create_test_drop_spec(self, oid, rank, kwargs) -> dropdict:
{
"oid": oid,
"categoryType": CategoryType.DATA,
"dataclass": "dlg.data.drops.data_base.NullDROP",
"dropclass": "dlg.data.drops.data_base.NullDROP",
"weight": 0,
"rank": rank,
"reprodata": self.jd.get("reprodata", {}),
Expand Down

0 comments on commit 6ea8df4

Please sign in to comment.