Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Arohan Ajit authored and Arohan Ajit committed Nov 9, 2024
1 parent b32bb8f commit 6386b25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/wxpython/tplot/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def _layout(self):
self.coorval = gselect.CoordinatesSelect(
parent=self.controlPanelRaster, giface=self._giface
)
except (AttributeError, TypeError, NotImplementedError):
except NotImplementedError:
self.coorval = TextCtrl(
parent=self.controlPanelRaster,
id=wx.ID_ANY,
Expand Down Expand Up @@ -281,7 +281,7 @@ def _layout(self):
self.cats = gselect.VectorCategorySelect(
parent=self.controlPanelVector, giface=self._giface
)
except (AttributeError, TypeError):
except NotImplementedError:
self.cats = TextCtrl(
parent=self.controlPanelVector,
id=wx.ID_ANY,
Expand Down

0 comments on commit 6386b25

Please sign in to comment.