Skip to content

Commit

Permalink
fixed 722
Browse files Browse the repository at this point in the history
  • Loading branch information
Arohan Ajit authored and Arohan Ajit committed Oct 31, 2024
1 parent ba0a495 commit 569c226
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ per-file-ignores =
gui/scripts/d.wms.py: E501
gui/wxpython/image2target/g.gui.image2target.py: E501
gui/wxpython/photo2image/g.gui.photo2image.py: E501
gui/wxpython/psmap/*: E501, E722
gui/wxpython/psmap/*: E501
gui/wxpython/vdigit/*: F841, E722, F405, F403
gui/wxpython/animation/g.gui.animation.py: E501
gui/wxpython/tplot/frame.py: F841, E722
Expand Down
4 changes: 2 additions & 2 deletions gui/wxpython/psmap/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ def makePSFont(self, textDict):
fn = wx.Font(
pointSize=fontsize, family=family, style=style, weight=weight, face=face
)
except:
except (ValueError, wx.PyAssertionError):
fn = wx.Font(
pointSize=fontsize,
family=wx.FONTFAMILY_DEFAULT,
Expand All @@ -1071,7 +1071,7 @@ def getTextExtent(self, textDict):
dc.SetFont(fn)
w, h, lh = dc.GetFullMultiLineTextExtent(textDict["text"])
return (w, h)
except:
except (wx.PyAssertionError, ValueError):
return (0, 0)

def getInitMap(self):
Expand Down

0 comments on commit 569c226

Please sign in to comment.