Skip to content

Commit 0495c0f

Browse files
committed
Lint
1 parent 2ebd1d0 commit 0495c0f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Orange/widgets/visualize/owscatterplot.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,5 +519,6 @@ def migrate_context(cls, context, version):
519519

520520

521521
if __name__ == "__main__": # pragma: no cover
522-
data = Table("iris")
523-
WidgetPreview(OWScatterPlot).run(set_data=data, set_subset_data=data[:30])
522+
table = Table("iris")
523+
WidgetPreview(OWScatterPlot).run(set_data=table,
524+
set_subset_data=table[:30])

0 commit comments

Comments
 (0)