Skip to content

Commit

Permalink
test_report: Fix falling import
Browse files Browse the repository at this point in the history
  • Loading branch information
VesnaT committed Jul 6, 2020
1 parent 242972f commit f358987
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Orange/widgets/visualize/owboxplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,17 +174,16 @@ class Warning(widget.OWWidget.Warning):
_pen_axis_tick.setCapStyle(Qt.FlatCap)

_box_brush = QBrush(QColor(0x33, 0x88, 0xff, 0xc0))

_axis_font = QFont()
_axis_font.setPixelSize(12)
_label_font = QFont()
_label_font.setPixelSize(11)
_attr_brush = QBrush(QColor(0x33, 0x00, 0xff))
_attr_brush = QBrush(QColor(0x33, 0x00, 0xff))

graph_name = "box_scene"

def __init__(self):
super().__init__()
self._axis_font = QFont()
self._axis_font.setPixelSize(12)
self._label_font = QFont()
self._label_font.setPixelSize(11)
self.dataset = None
self.stats = []
self.dist = self.conts = None
Expand Down

0 comments on commit f358987

Please sign in to comment.