mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
bin is apparently a keyword in python
This commit is contained in:
parent
a9031a2a9a
commit
e5448bf16d
1 changed files with 2 additions and 2 deletions
|
|
@ -176,8 +176,8 @@ class MeshPlotter(tk.Frame):
|
|||
|
||||
# Set combobox items
|
||||
if filterType in ['Energy', 'Energyout']:
|
||||
combobox['values'] = ['{} to {}'.format(bin)
|
||||
for bin in f.bins)]
|
||||
combobox['values'] = ['{} to {}'.format(*ebin)
|
||||
for ebin in f.bins]
|
||||
else:
|
||||
combobox['values'] = [str(i) for i in f.bins]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue