diff options
| author | Pepper <pepper@scannerjammer.com> | 2015-03-04 15:57:53 -0500 |
|---|---|---|
| committer | Pepper <pepper@scannerjammer.com> | 2015-03-04 15:57:53 -0500 |
| commit | 021842ec42b991e7a641ae26862d77b324ea05db (patch) | |
| tree | 81194a75da0ff1279af7346d6e50cd424c33bacb /Pb_Api/Param/Image_Url.py | |
| parent | 513526efe79ff90be5b23459253dd5f553ec73d6 (diff) | |
started oop code
Diffstat (limited to 'Pb_Api/Param/Image_Url.py')
| -rw-r--r-- | Pb_Api/Param/Image_Url.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Pb_Api/Param/Image_Url.py b/Pb_Api/Param/Image_Url.py new file mode 100644 index 0000000..d199e11 --- /dev/null +++ b/Pb_Api/Param/Image_Url.py @@ -0,0 +1,7 @@ +from config import TEST_URL +from Pb_Api.Param.String import Pb_Api_Param_String + +class Pb_Api_Param_Image_Url(Pb_Api_Param_String): + def __init__(self, options): + super(Pb_Api_Param_Image_Url, self).__init__(*args, **kwargs) + self.value(TEST_URL, autogenerated=1) |
