straticsryan

Results 3 comments of straticsryan

To note, this also needs to happen in swagger py or else you'll get an error saying you can't find swagger_model or something.

alternatively, you can do this as well: ``` python import sys if sys.version_info < (3, 0): import urllib import urlparse else: import urllib.request as urllib import urllib.parse as urlparse ```