mg-pso-gui 0.1.68__py3-none-any.whl → 0.1.69__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mg-pso-gui
3
- Version: 0.1.68
3
+ Version: 0.1.69
4
4
  Summary: GUI for MG-PSO
5
5
  Author: Robert Cordingly
6
6
  Author-email: <rcording@uw.ed>
@@ -18,7 +18,7 @@ mgpsogui/gui/SetupTab/SetupTab.py,sha256=bqb_kgDaTi0oEOjPNBCbdyHaGvCvMRG6LAZ5DXq
18
18
  mgpsogui/gui/SetupTab/StaticParameterView.py,sha256=iEG-UpBBlAJabZo3MG768oLqOROjUPc23tKOSd47IUc,2739
19
19
  mgpsogui/gui/SetupTab/StepView.py,sha256=oG5Q-3xpTRP1f_PbNvohKctrbpD63zLAJzHD00bN44k,5531
20
20
  mgpsogui/gui/SetupTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- mgpsogui/gui/VisualizeTab/SideBar.py,sha256=PZzpf5TRPkJR_OOB8ix-dqDyWZ9x_2Db1XNPPDHOpWc,12914
21
+ mgpsogui/gui/VisualizeTab/SideBar.py,sha256=WD3PUBCXXneR17HmTB9qatlImVDmlgtsWFBU01bm8QA,13056
22
22
  mgpsogui/gui/VisualizeTab/VisualizeTab.py,sha256=y3ZjLR78yXjHTcHMpB637ipBKxb1CCEM3qzG8OUJvpQ,3477
23
23
  mgpsogui/gui/VisualizeTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
24
  mgpsogui/gui/images/IGOW 4 Logo.png,sha256=JixNXz5gOEj898VF-_PHthAlGU-6W-y9ucb4EVNPtjs,433752
@@ -46,8 +46,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
46
46
  mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
47
47
  mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
48
48
  mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
49
- mg_pso_gui-0.1.68.dist-info/METADATA,sha256=o6sOHnNheYZm1xO-BX6faVWeesNfq9BcefSA3NQEmas,9458
50
- mg_pso_gui-0.1.68.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
51
- mg_pso_gui-0.1.68.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
52
- mg_pso_gui-0.1.68.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
53
- mg_pso_gui-0.1.68.dist-info/RECORD,,
49
+ mg_pso_gui-0.1.69.dist-info/METADATA,sha256=uY3LzxAi1KoGoB79OcDnyhqOTH1rfEcGN6Muts9GSLA,9458
50
+ mg_pso_gui-0.1.69.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
51
+ mg_pso_gui-0.1.69.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
52
+ mg_pso_gui-0.1.69.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
53
+ mg_pso_gui-0.1.69.dist-info/RECORD,,
@@ -86,6 +86,7 @@ class SideBar(CTkScrollableFrame):
86
86
  selected_file = self.home_page.selected_csv.get()
87
87
  if (selected_file in path_map and selected_file != self.home_page.open_file):
88
88
  self.home_page.csv_data = self.load_special_csv(path_map[selected_file])
89
+ print(self.home_page.csv_data)
89
90
  self.home_page.open_file = selected_file
90
91
 
91
92
  if (self.home_page.csv_data is not None):
@@ -155,11 +156,13 @@ class SideBar(CTkScrollableFrame):
155
156
  selected_file = self.home_page.selected_csv.get()
156
157
  if (selected_file in path_map and selected_file != self.home_page.open_file):
157
158
  self.home_page.csv_data = self.load_special_csv(path_map[selected_file])
159
+ print(self.home_page.csv_data)
158
160
  self.home_page.open_file = selected_file
159
161
 
160
162
  selected_file2 = self.home_page.selected_csv2.get()
161
163
  if (selected_file2 in path_map and selected_file2 != self.home_page.open_file2):
162
164
  self.home_page.csv_data2 = self.load_special_csv(path_map[selected_file])
165
+ print(self.home_page.csv_data2)
163
166
  self.home_page.open_file2 = selected_file2
164
167
 
165
168
  if (self.home_page.csv_data is not None and self.home_page.csv_data2 is not None):