diff --git a/tests/test_handlers.py b/tests/test_handlers.py index 74ef206..f5d1030 100644 --- a/tests/test_handlers.py +++ b/tests/test_handlers.py @@ -4,9 +4,6 @@ import unittest import tornado -from nbformat import write -from nbformat.v4 import new_markdown_cell, new_notebook - from jupyter_notebook_gist.handlers import (extract_code_from_args, extract_notebook_path_from_args, get_notebook_contents, @@ -15,6 +12,8 @@ helper_request_access_token, raise_error, raise_github_error, verify_gist_response) +from nbformat import write +from nbformat.v4 import new_markdown_cell, new_notebook class TestError(unittest.TestCase):