Skip to content

Commit

Permalink
tox: Fix warnings reported by PyLint
Browse files Browse the repository at this point in the history
fritzcollectd.py:27: [C0411(wrong-import-order), ]
    third party import "import fritzconnection" should be placed before
    "import collectd"
fritzcollectd.py:29: [C0411(wrong-import-order), ]
    third party import "from lxml.etree import XMLSyntaxError" should
    be placed before "import collectd"
  • Loading branch information
fetzerch committed Mar 17, 2018
1 parent 6ec0ef3 commit edddcd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fritzcollectd.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@

from collections import namedtuple, OrderedDict

import collectd # pylint: disable=import-error
import fritzconnection

from lxml.etree import XMLSyntaxError # pylint: disable=no-name-in-module

import collectd # pylint: disable=import-error

__version__ = '0.5.0'


Expand Down

0 comments on commit edddcd1

Please sign in to comment.