summaryrefslogtreecommitdiff
path: root/ricky/imgradient/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'ricky/imgradient/__init__.py')
-rw-r--r--ricky/imgradient/__init__.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/ricky/imgradient/__init__.py b/ricky/imgradient/__init__.py
deleted file mode 100644
index a8ed8a6..0000000
--- a/ricky/imgradient/__init__.py
+++ /dev/null
@@ -1,15 +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.api = self
- return new_params