liveConsole 1.7.7__py3-none-any.whl → 1.7.8__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 liveConsole might be problematic. Click here for more details.
- {liveconsole-1.7.7.dist-info → liveconsole-1.7.8.dist-info}/METADATA +1 -1
- {liveconsole-1.7.7.dist-info → liveconsole-1.7.8.dist-info}/RECORD +7 -7
- pysole/pysole.py +1 -1
- {liveconsole-1.7.7.dist-info → liveconsole-1.7.8.dist-info}/WHEEL +0 -0
- {liveconsole-1.7.7.dist-info → liveconsole-1.7.8.dist-info}/entry_points.txt +0 -0
- {liveconsole-1.7.7.dist-info → liveconsole-1.7.8.dist-info}/licenses/LICENSE +0 -0
- {liveconsole-1.7.7.dist-info → liveconsole-1.7.8.dist-info}/top_level.txt +0 -0
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
liveConsole/__init__.py,sha256=GyV_Y3iiiS12JoEiqE55uZPQ8ZDYfOSKvxh5rcfaD1U,20
|
|
2
|
-
liveconsole-1.7.
|
|
2
|
+
liveconsole-1.7.8.dist-info/licenses/LICENSE,sha256=7dZ0zL72aGaFE0C9DxacOpnaSkC5jajhG6iL7lqhWmU,1064
|
|
3
3
|
pysole/__init__.py,sha256=0Jq2s5WxFVveZW-pGwThGZLt_mVSdGcsT9lpJNEZ6ds,124
|
|
4
4
|
pysole/__main__.py,sha256=QvVFH8J2yzgQaF9MosQ6ajCW67uiRbYliePsTEUCIAg,82
|
|
5
5
|
pysole/commandHistory.py,sha256=xJtWbJ_vgJo2QGgaZJsApTOi_Hm8Yz0V9_zqQUCItj8,1084
|
|
6
6
|
pysole/helpTab.py,sha256=o0uSY-8sw7FuuBrt0FQwcgK6ljNVx3IgRnW7heZ6GvY,2454
|
|
7
7
|
pysole/liveConsole.py,sha256=lzS3dphAQ1i8pQC4E2FY-FyMMSKi-dAN0xr6XUgrNmo,168
|
|
8
8
|
pysole/mainConsole.py,sha256=t_ijaSm2rTxM5CrLqjxT5Oq_OFwxk7JsPOAXxo9dbdE,15357
|
|
9
|
-
pysole/pysole.py,sha256=
|
|
9
|
+
pysole/pysole.py,sha256=QxcLjy2SyxXPkzv54SY2BBC1zJ8SqrDtRzhHQqVDw6I,13775
|
|
10
10
|
pysole/settings.json,sha256=cmOtIhRDWHMwmQMESuykWuzJd_jG6iT2tJ-uhSps_3U,722
|
|
11
11
|
pysole/styledTextbox.py,sha256=qWnwGAKjl7R2HYPXQOr8GrGYIr4JC8PzmeioOCH7hGo,2236
|
|
12
12
|
pysole/suggestionManager.py,sha256=CGR1wsRIU4le3Bq_6CPAytM1CzTQAV_jUl5KZbg9LPU,6544
|
|
13
13
|
pysole/themes.json,sha256=2KvEfxm-eDsfVKIdBhWk-Qd93wYQub3YwkxbS6CGKH0,2525
|
|
14
14
|
pysole/utils.py,sha256=cKsSPWeYRxPhkiM8Xrb-aMW6w0SU5Xuu9WCgsu6_xtA,1364
|
|
15
|
-
liveconsole-1.7.
|
|
16
|
-
liveconsole-1.7.
|
|
17
|
-
liveconsole-1.7.
|
|
18
|
-
liveconsole-1.7.
|
|
19
|
-
liveconsole-1.7.
|
|
15
|
+
liveconsole-1.7.8.dist-info/METADATA,sha256=ra5xvWuvJAaTs-0JAgcxo_rclzPm0He5Ij1p6lShW5c,10407
|
|
16
|
+
liveconsole-1.7.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
liveconsole-1.7.8.dist-info/entry_points.txt,sha256=qtvuJHcex4QqM97x_UawFWJYnfhQRl0jhqLcWRpnAGo,84
|
|
18
|
+
liveconsole-1.7.8.dist-info/top_level.txt,sha256=YGhC2H7bvcDnMwEtvLXF6qQNIZT2Saayyk1KOJyndN8,19
|
|
19
|
+
liveconsole-1.7.8.dist-info/RECORD,,
|
pysole/pysole.py
CHANGED
|
@@ -213,7 +213,7 @@ class InteractiveConsole(ctk.CTk):
|
|
|
213
213
|
def saveSettings():
|
|
214
214
|
try:
|
|
215
215
|
newSettings = json.loads(textbox.get("0.0", "end-1c"))
|
|
216
|
-
with open(
|
|
216
|
+
with open(settingsPath, "w") as f:
|
|
217
217
|
json.dump(newSettings, f, indent=4)
|
|
218
218
|
messagebox.showinfo("Success", "Settings saved!")
|
|
219
219
|
editor.destroy()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|