From c893072ec6391efb9987b7798ddbdaa0296e557c Mon Sep 17 00:00:00 2001 From: luz paz Date: Mon, 20 Sep 2021 14:42:42 -0400 Subject: [PATCH] Fix flake8 E501 issue --- beeref/selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beeref/selection.py b/beeref/selection.py index 7ec304e..1e23a1b 100644 --- a/beeref/selection.py +++ b/beeref/selection.py @@ -244,7 +244,7 @@ class SelectableMixin(BaseItemMixin): path.addRect(utils.get_rect_from_points(p1, p2)) # Substract the scale area: - # We need to make the substracted shape slightly bigger due to this bug: + # We need to make the substracted shape slightly bigger due to: # https://bugreports.qt.io/browse/QTBUG-57567 return path - self.get_scale_bounds(corner, margin=0.001)