diff --git a/designateclient/auth.py b/designateclient/auth.py index 3571e2a..2592399 100644 --- a/designateclient/auth.py +++ b/designateclient/auth.py @@ -13,8 +13,9 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. -from urlparse import urlparse + from requests.auth import AuthBase +from urlparse import urlparse from keystoneclient.v2_0.client import Client diff --git a/designateclient/cli/diagnostics.py b/designateclient/cli/diagnostics.py index 847dbdc..327e098 100644 --- a/designateclient/cli/diagnostics.py +++ b/designateclient/cli/diagnostics.py @@ -13,7 +13,9 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import logging + from designateclient.cli import base LOG = logging.getLogger(__name__) diff --git a/designateclient/cli/domains.py b/designateclient/cli/domains.py index 18de93e..fc7903e 100644 --- a/designateclient/cli/domains.py +++ b/designateclient/cli/domains.py @@ -13,7 +13,9 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import logging + from designateclient.cli import base from designateclient.v1.domains import Domain diff --git a/designateclient/cli/records.py b/designateclient/cli/records.py index 13dab2c..d9da9d1 100644 --- a/designateclient/cli/records.py +++ b/designateclient/cli/records.py @@ -13,7 +13,9 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import logging + from designateclient.cli import base from designateclient.v1.records import Record diff --git a/designateclient/cli/servers.py b/designateclient/cli/servers.py index dc0832e..18db3fc 100644 --- a/designateclient/cli/servers.py +++ b/designateclient/cli/servers.py @@ -13,7 +13,9 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import logging + from designateclient.cli import base from designateclient.v1.servers import Server diff --git a/designateclient/cli/sync.py b/designateclient/cli/sync.py index 92bce99..9e6ac23 100644 --- a/designateclient/cli/sync.py +++ b/designateclient/cli/sync.py @@ -14,6 +14,7 @@ # License for the specific language governing permissions and limitations # under the License. import logging + from designateclient.cli import base LOG = logging.getLogger(__name__) diff --git a/designateclient/cli/touch.py b/designateclient/cli/touch.py index 4644295..ff20516 100644 --- a/designateclient/cli/touch.py +++ b/designateclient/cli/touch.py @@ -13,7 +13,9 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import logging + from designateclient.cli import base LOG = logging.getLogger(__name__) diff --git a/designateclient/shell.py b/designateclient/shell.py index f5855d6..a024a21 100644 --- a/designateclient/shell.py +++ b/designateclient/shell.py @@ -13,8 +13,10 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import logging import os + from cliff.app import App from cliff.commandmanager import CommandManager from designateclient.version import version_info as version diff --git a/designateclient/utils.py b/designateclient/utils.py index 61f669a..8d559e0 100644 --- a/designateclient/utils.py +++ b/designateclient/utils.py @@ -13,9 +13,12 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import os import pkg_resources + import json + from designateclient import exceptions diff --git a/designateclient/v1/__init__.py b/designateclient/v1/__init__.py index e388730..1fb5332 100644 --- a/designateclient/v1/__init__.py +++ b/designateclient/v1/__init__.py @@ -15,8 +15,9 @@ # under the License. import requests from stevedore import extension -from designateclient import exceptions + from designateclient.auth import KeystoneAuth +from designateclient import exceptions class Client(object): diff --git a/designateclient/v1/domains.py b/designateclient/v1/domains.py index 26158d7..530aae2 100644 --- a/designateclient/v1/domains.py +++ b/designateclient/v1/domains.py @@ -14,9 +14,10 @@ # License for the specific language governing permissions and limitations # under the License. import json -from designateclient import warlock + from designateclient import utils from designateclient.v1.base import CrudController +from designateclient import warlock Domain = warlock.model_factory(utils.load_schema('v1', 'domain')) diff --git a/designateclient/v1/records.py b/designateclient/v1/records.py index dc2651b..63c7a80 100644 --- a/designateclient/v1/records.py +++ b/designateclient/v1/records.py @@ -13,11 +13,13 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import json -from designateclient import warlock + from designateclient import utils from designateclient.v1.base import CrudController from designateclient.v1.domains import Domain +from designateclient import warlock Record = warlock.model_factory(utils.load_schema('v1', 'record')) diff --git a/designateclient/v1/servers.py b/designateclient/v1/servers.py index 3b07631..68586ee 100644 --- a/designateclient/v1/servers.py +++ b/designateclient/v1/servers.py @@ -13,10 +13,12 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + import json -from designateclient import warlock + from designateclient import utils from designateclient.v1.base import CrudController +from designateclient import warlock Server = warlock.model_factory(utils.load_schema('v1', 'server')) diff --git a/designateclient/warlock.py b/designateclient/warlock.py index 073fe47..2e54b26 100644 --- a/designateclient/warlock.py +++ b/designateclient/warlock.py @@ -15,8 +15,10 @@ # Code copied from Warlock, as warlock depends on jsonschema==0.2 # Hopefully we can upstream the changes ASAP. # + import copy import logging + import jsonschema LOG = logging.getLogger(__name__) diff --git a/tox.ini b/tox.ini index 5b792cf..b2b93f0 100644 --- a/tox.ini +++ b/tox.ini @@ -33,6 +33,6 @@ commands = python setup.py testr --coverage --testr-args='{posargs}' commands = {posargs} [flake8] -ignore = H302,H306,H401,H402,H404 +ignore = H302,H401,H402,H404 builtins = _ exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools