diff options
| author | pepperpepperpepper <pepper@scannerjammer.com> | 2015-12-08 12:46:23 -0800 |
|---|---|---|
| committer | pepperpepperpepper <pepper@scannerjammer.com> | 2015-12-08 12:46:23 -0800 |
| commit | 0b994e3b71c2c0b463d100edd07745af565c7a59 (patch) | |
| tree | 2a7c7b5834859684400e770a22eecb62fc41592b /ricky/params.py | |
| parent | 17fff32864cf33bbec2b531a6123618acf74f3f7 (diff) | |
changed structure, added utils
Diffstat (limited to 'ricky/params.py')
| -rw-r--r-- | ricky/params.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ricky/params.py b/ricky/params.py index 8724a0d..b12902a 100644 --- a/ricky/params.py +++ b/ricky/params.py @@ -9,7 +9,8 @@ from ricky.config import PROBABILITIES_DIR class Params(object): def __init__(self, *args): self._api = None - self._params = args + self._url = None + self._params = tuple(args) def __getitem__(self, name): """getter for the param by name""" |
