summaryrefslogtreecommitdiff
path: root/ricky/param
diff options
context:
space:
mode:
Diffstat (limited to 'ricky/param')
-rw-r--r--ricky/param/param.py2
-rw-r--r--ricky/param/selections.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/ricky/param/param.py b/ricky/param/param.py
index 6f7e2a7..9e7b42e 100644
--- a/ricky/param/param.py
+++ b/ricky/param/param.py
@@ -18,7 +18,7 @@ class Param(object):
self._selections = kwargs.get('selections') or []
if len(self._selections):
self._validate_selections()
- """default value is the option with the heaviest weight"""
+ """default value is the selection with the heaviest weight"""
self.default(self._choose_heaviest())
def selections(self):
diff --git a/ricky/param/selections.py b/ricky/param/selections.py
index 303c92e..1e2c3b3 100644
--- a/ricky/param/selections.py
+++ b/ricky/param/selections.py
@@ -1,4 +1,4 @@
-from ricky.param.option import Selection
+from ricky.param.selection import Selection
import sys
class Selections:
def __init__(self, *args):