Fixed flake8 complaints.

This commit is contained in:
Tron
2018-10-15 05:43:56 -05:00
parent 929b2dfb38
commit 05ce8fbf1c
2 changed files with 2 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ class BitmapLoader(object):
bmp: wx.Bitmap = img.ConvertToBitmap()
if scale > 1:
bmp.SetSize((int(bmp.GetWidth()/scale), int(bmp.GetHeight()/scale)))
bmp.SetSize((bmp.GetWidth() // scale, bmp.GetHeight() // scale))
return bmp
@classmethod