Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wxGUI: Fixed F841 in dialogs.py, frame.py #4431

Merged
merged 2 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions gui/wxpython/iscatt/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ def _layout(self):
border = wx.BoxSizer(wx.VERTICAL)
dialogSizer = wx.BoxSizer(wx.VERTICAL)

regionSizer = wx.BoxSizer(wx.HORIZONTAL)

dialogSizer.Add(
self._addSelectSizer(title=self.band_1_label, sel=self.band_1_ch)
)
Expand Down Expand Up @@ -356,7 +354,6 @@ def __init__(

self.scatt_mgr = scatt_mgr

maxValue = 1e8
self.parent = parent
self.settings = {}

Expand Down
3 changes: 0 additions & 3 deletions gui/wxpython/iscatt/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,6 @@ def __init__(self, parent, scatt_mgr, id=wx.ID_ANY):

self.Bind(aui.EVT_AUI_PANE_CLOSE, self.OnPlotPaneClosed)

dlgSize = (-1, 400)
# self.SetBestSize(dlgSize)
# self.SetInitialSize(dlgSize)
self.SetAutoLayout(1)
# fix goutput's pane size (required for Mac OSX)
# if self.gwindow:
Expand Down
Loading