Skip to content
Snippets Groups Projects
Commit 91adf2a3 authored by Marc Trölitzsch's avatar Marc Trölitzsch Committed by Dan Michael O. Heggø
Browse files

remove: simplejson dependency

parent f960d853
No related branches found
No related tags found
No related merge requests found
......@@ -6,10 +6,7 @@ import six
from collections import OrderedDict
try:
import json
except ImportError:
import simplejson as json
import json
import requests
from requests.auth import HTTPBasicAuth, AuthBase
from requests_oauthlib import OAuth1
......
......@@ -11,12 +11,10 @@ import responses
import pkg_resources # part of setuptools
import mock
import time
import json
from requests_oauthlib import OAuth1
try:
import json
except ImportError:
import simplejson as json
if __name__ == "__main__":
print()
......
......@@ -7,13 +7,11 @@ import logging
import requests
import responses
import mock
import json
import mwclient
from mwclient.listing import List, GeneratorList
try:
import json
except ImportError:
import simplejson as json
if __name__ == "__main__":
print()
......
......@@ -7,16 +7,13 @@ import logging
import requests
import responses
import mock
import json
import mwclient
from mwclient.page import Page
from mwclient.client import Site
from mwclient.listing import Category
from mwclient.errors import APIError, AssertUserFailedError, ProtectedPageError, InvalidPageTitle
try:
import json
except ImportError:
import simplejson as json
if __name__ == "__main__":
print()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment