Skip to content

Commit

Permalink
Mosaic: Annotate settings
Browse files Browse the repository at this point in the history
  • Loading branch information
janezd committed Mar 12, 2021
1 parent 4ac4e37 commit 40f34de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Orange/widgets/visualize/owmosaic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from itertools import product, chain, repeat
from math import sqrt, log
from operator import mul, attrgetter
from typing import Set

import numpy as np
from scipy.stats import distributions
Expand Down Expand Up @@ -312,7 +313,7 @@ class Outputs:
variable3: Variable = ContextSetting(None)
variable4: Variable = ContextSetting(None)
variable_color: DiscreteVariable = ContextSetting(None)
selection = Setting(set(), schema_only=True)
selection: Set[str] = Setting(set(), schema_only=True)

BAR_WIDTH = 5
SPACING = 4
Expand Down

0 comments on commit 40f34de

Please sign in to comment.