Skip to content
Snippets Groups Projects
Commit dbb06e68 authored by Duncan Macleod's avatar Duncan Macleod Committed by Duncan Macleod
Browse files

sort and format all import blocks

parent 3f7b214d
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,14 @@ import sys
from ligo import segments
from . import (__version__, ui)
from .io import (lal_cache, format_cache)
from . import (
__version__,
ui,
)
from .io import (
format_cache,
lal_cache,
)
from .utils import get_default_host
__author__ = 'Duncan Macleod <duncan.macleod@ligo.org>'
......
......@@ -30,7 +30,10 @@ from urllib.parse import urlparse
from ligo import segments
from . import api
from .utils import (get_default_host, file_segment)
from .utils import (
file_segment,
get_default_host,
)
__author__ = 'Duncan Macleod <duncan.macleod@ligo.org>'
__all__ = ['HTTPConnection', 'HTTPSConnection']
......
......@@ -23,8 +23,10 @@ from unittest import mock
from urllib.error import HTTPError
import pytest
from ligo.segments import (segment, segmentlist)
from ligo.segments import (
segment,
segmentlist,
)
from ..http import (
HTTPConnection,
......
......@@ -24,7 +24,6 @@ from io import StringIO
from unittest import mock
import pytest
from ligo.segments import segment
from .. import __main__ as main
......
......@@ -20,10 +20,12 @@ from functools import partial
from unittest import mock
import pytest
from ligo import segments
from .. import (api, ui)
from .. import (
api,
ui,
)
from . import yield_fixture
__author__ = 'Duncan Macleod <duncan.macleod@ligo.org>'
......
......@@ -28,9 +28,7 @@ from urllib.parse import urlparse
from warnings import warn
import requests
from igwn_auth_utils.requests import get as _get
from ligo import segments
from . import api
......@@ -82,7 +80,11 @@ def connect(host=None, port=None): # pragma: no cover
a newly opened connection
"""
import ssl
from .http import (HTTPConnection, HTTPSConnection)
from .http import (
HTTPConnection,
HTTPSConnection,
)
from .utils import find_credential
warn(
......
......@@ -22,9 +22,8 @@
import os
import warnings
from ligo.segments import segment
from igwn_auth_utils import x509 as igwn_x509
from ligo.segments import segment
def get_default_host():
......
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