Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
ales-erjavec committed Feb 24, 2023
1 parent d453df1 commit 72ffcf8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Orange/widgets/obsolete/owtable.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ class Warning(OWWidget.Warning):
buttons_area_orientation = Qt.Vertical

show_distributions = Setting(False)
dist_color_RGB = Setting((220, 220, 220, 255))
show_attribute_labels = Setting(True)
select_rows = Setting(True)
auto_commit = Setting(True)
Expand All @@ -95,7 +94,7 @@ def __init__(self):
self.__pending_selected_cols = self.selected_cols
self.selected_cols = None

self.dist_color = QColor(*self.dist_color_RGB)
self.dist_color = QColor(220, 220, 220, 255)

info_box = gui.vBox(self.controlArea, "Info")
self.info_text = gui.widgetLabel(info_box)
Expand Down Expand Up @@ -134,8 +133,7 @@ def __init__(self):
def copy_to_clipboard(self):
self.copy()

@staticmethod
def sizeHint():
def sizeHint(self):
return QSize(800, 500)

def _create_table_view(self):
Expand Down

0 comments on commit 72ffcf8

Please sign in to comment.