setta 0.0.15.dev2__py3-none-any.whl → 0.0.15.dev3__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.
Potentially problematic release.
This version of setta might be problematic. Click here for more details.
- setta/__init__.py +1 -1
- setta/routers/interactive.py +13 -2
- setta/static/constants/Settings.json +1 -1
- setta/static/frontend/assets/{index-CFAyqpy6.js → index-C-JEbczL.js} +160 -160
- setta/static/frontend/index.html +1 -1
- setta/tasks/tasks.py +3 -2
- {setta-0.0.15.dev2.dist-info → setta-0.0.15.dev3.dist-info}/METADATA +1 -1
- {setta-0.0.15.dev2.dist-info → setta-0.0.15.dev3.dist-info}/RECORD +12 -12
- {setta-0.0.15.dev2.dist-info → setta-0.0.15.dev3.dist-info}/LICENSE +0 -0
- {setta-0.0.15.dev2.dist-info → setta-0.0.15.dev3.dist-info}/WHEEL +0 -0
- {setta-0.0.15.dev2.dist-info → setta-0.0.15.dev3.dist-info}/entry_points.txt +0 -0
- {setta-0.0.15.dev2.dist-info → setta-0.0.15.dev3.dist-info}/top_level.txt +0 -0
setta/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.0.15.
|
1
|
+
__version__ = "0.0.15.dev3"
|
setta/routers/interactive.py
CHANGED
@@ -68,9 +68,20 @@ async def route_update_interactive_code(
|
|
68
68
|
|
69
69
|
async def process_returned_content_from_multiple_tasks(tasks, to_run):
|
70
70
|
all_content = await asyncio.gather(*to_run)
|
71
|
-
content = [
|
71
|
+
content = []
|
72
|
+
exception_occurred = False
|
73
|
+
for sublist in all_content:
|
74
|
+
for item in sublist:
|
75
|
+
if isinstance(item, Exception):
|
76
|
+
exception_occurred = True
|
77
|
+
else:
|
78
|
+
content.append(item)
|
72
79
|
inMemorySubprocessInfo = tasks.getInMemorySubprocessInfo()
|
73
|
-
return {
|
80
|
+
return {
|
81
|
+
"inMemorySubprocessInfo": inMemorySubprocessInfo,
|
82
|
+
"content": content,
|
83
|
+
"exceptionOccurred": exception_occurred,
|
84
|
+
}
|
74
85
|
|
75
86
|
|
76
87
|
async def update_interactive_code(p, tasks, lsp_writers, idx):
|
@@ -17,7 +17,7 @@
|
|
17
17
|
"copyShortcut": "Mod + C",
|
18
18
|
"pasteShortcut": "Mod + V",
|
19
19
|
"pasteAsRefShortcut": "Mod + Shift + V",
|
20
|
-
"sortingShortcut": "
|
20
|
+
"sortingShortcut": "Mod + Alt",
|
21
21
|
"movingFreeShortcut": "Alt",
|
22
22
|
"showTooltipShortcut": "Q",
|
23
23
|
"tooltipToPlaintextShortcut": "Q + S",
|