campaignmonitor / createsend-python

A Python library for the Campaign Monitor API
http://campaignmonitor.github.io/createsend-python
MIT License
57 stars 64 forks source link

Clean up `simplejson` imports #54

Closed katharosada closed 6 years ago

katharosada commented 6 years ago

This is everywhere in the code:

try:
    import json
except ImportError:
    import simplejson as json

This is no longer necessary since Python versions pre-json-module (pre 2.6) are not supported and probably already broken since simplejson is not being installed.