setta 0.0.14.dev3__py3-none-any.whl → 0.0.14.dev5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- setta/__init__.py +1 -1
- setta/code_gen/export_selected.py +0 -6
- setta/static/frontend/assets/{index-B_D80dlv.js → index-B8656WgG.js} +2 -2
- setta/static/frontend/index.html +1 -1
- setta/tasks/task_runner.py +21 -9
- setta/tasks/tasks.py +53 -22
- setta/tasks/utils.py +19 -6
- {setta-0.0.14.dev3.dist-info → setta-0.0.14.dev5.dist-info}/METADATA +1 -1
- {setta-0.0.14.dev3.dist-info → setta-0.0.14.dev5.dist-info}/RECORD +13 -13
- {setta-0.0.14.dev3.dist-info → setta-0.0.14.dev5.dist-info}/LICENSE +0 -0
- {setta-0.0.14.dev3.dist-info → setta-0.0.14.dev5.dist-info}/WHEEL +0 -0
- {setta-0.0.14.dev3.dist-info → setta-0.0.14.dev5.dist-info}/entry_points.txt +0 -0
- {setta-0.0.14.dev3.dist-info → setta-0.0.14.dev5.dist-info}/top_level.txt +0 -0
setta/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.0.14.
|
1
|
+
__version__ = "0.0.14.dev5"
|
@@ -30,10 +30,6 @@ def get_drawing(p, id):
|
|
30
30
|
return p["sections"][id]["drawing"]
|
31
31
|
|
32
32
|
|
33
|
-
def get_layers(p, id):
|
34
|
-
return p["sections"][id]["layers"]
|
35
|
-
|
36
|
-
|
37
33
|
def get_chat_message(p, id):
|
38
34
|
return p["sections"][id]["latestChatMessage"]
|
39
35
|
|
@@ -600,10 +596,8 @@ class ExporterForInMemoryFn:
|
|
600
596
|
elif type == C.DRAW:
|
601
597
|
value = {
|
602
598
|
"drawing": get_drawing(self.p, id),
|
603
|
-
"layers": get_layers(self.p, id),
|
604
599
|
}
|
605
600
|
self.create_var_mapping((id, "drawing"), f'{name}["drawing"]')
|
606
|
-
self.create_var_mapping((id, "layers"), f'{name}["layers"]')
|
607
601
|
elif type == C.CHAT:
|
608
602
|
latestChatMessage = get_chat_message(self.p, id)
|
609
603
|
artifacts = get_artifacts(self.p, id)
|