Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Sep 28, 2019
1 parent b307db8 commit 6efe797
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _unittests/test_jspy/test_render_nb_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_render_nb_json_api(self):
self._testMethodName,
OutputPrint=__name__ == "__main__")

import requests
import requests # pylint: disable=C0415
data_json = requests.get(
"http://api.worldbank.org/countries?incomeLevel=LMC&format=json").json()
f = JSONJS(data_json, only_html=True)
Expand Down Expand Up @@ -64,7 +64,7 @@ def test_render_nb_json_api_local(self):
self._testMethodName,
OutputPrint=__name__ == "__main__")

import requests
import requests # pylint: disable=C0415
data_json = requests.get(
"http://api.worldbank.org/countries?incomeLevel=LMC&format=json").json()
f = JSONJS(data_json, only_html=True, local=True)
Expand Down

0 comments on commit 6efe797

Please sign in to comment.