summaryrefslogtreecommitdiff
path: root/ricky/imgradient/imgradient.py
diff options
context:
space:
mode:
authorpepperpepperpepper <pepper@scannerjammer.com>2015-11-29 17:44:05 -0800
committerpepperpepperpepper <pepper@scannerjammer.com>2015-11-29 17:44:05 -0800
commitf3cfd54c876ba3e7540443c2f442d2baa22acef8 (patch)
tree583c088e6f183232ddb21bd86f68c9e7b53ccccf /ricky/imgradient/imgradient.py
parent9a7bf3bffb2a8459e66b988aaff53611723b5ab4 (diff)
switched to json probabilities
Diffstat (limited to 'ricky/imgradient/imgradient.py')
-rw-r--r--ricky/imgradient/imgradient.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/ricky/imgradient/imgradient.py b/ricky/imgradient/imgradient.py
deleted file mode 100644
index 1d8da3d..0000000
--- a/ricky/imgradient/imgradient.py
+++ /dev/null
@@ -1,16 +0,0 @@
-"""class for the imgradient api handler"""
-from ricky.im import Im
-from ricky.imgradient.params import Params
-from ricky.config import IMGRADIENT_URL
-
-
-class ImGradient(Im):
- def __init__(self):
- super(ImGradient, self).__init__()
- self.url = IMGRADIENT_URL
-
- def params_init(self):
- new_params = Params()
- #new_params = self.get_from_server()
- new_params.api = self
- return new_params