diff options
| author | pepperpepperpepper <pepper@scannerjammer.com> | 2015-12-05 23:20:17 -0800 |
|---|---|---|
| committer | pepperpepperpepper <pepper@scannerjammer.com> | 2015-12-05 23:20:17 -0800 |
| commit | 31b969a687348015fc6292fb5c03cd6e8bd60489 (patch) | |
| tree | 7f1b4bdaf7bd60d1ec25b4fa7cad558523a169b4 /ricky/imgrid/__init__.py | |
| parent | dac73bd39db07e2fc471fb306f62d48d9a7faf9e (diff) | |
fixed imgrid
Diffstat (limited to 'ricky/imgrid/__init__.py')
| -rw-r--r-- | ricky/imgrid/__init__.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ricky/imgrid/__init__.py b/ricky/imgrid/__init__.py index 3b0b128..e977115 100644 --- a/ricky/imgrid/__init__.py +++ b/ricky/imgrid/__init__.py @@ -1,12 +1,14 @@ from ricky.im import Im -from ricky.imgrid.params import ImGridParams +from ricky.imgrid.params import Params from ricky.config import IMGRID_URL + class ImGrid(Im): def __init__(self): self.url = IMGRID_URL + def params_init(self): - new_params = ImGridParams() - #new_params = self.get_from_server() + new_params = Params() + # new_params = self.get_from_server() new_params.api = self return new_params |
