Fix a couple lint errors.

There are some imports that are actually third-party libraries, but
have local fakes for the sake of unit tests.  pylint doesn't like
this.

Change-Id: I8e97c2b9e1da4315bcd07a6a599c08a3a1893691
diff --git a/conman/connection_manager.py b/conman/connection_manager.py
index ebf84c1..acc9fe4 100755
--- a/conman/connection_manager.py
+++ b/conman/connection_manager.py
@@ -12,6 +12,9 @@
 import subprocess
 import time
 
+# This is in site-packages on the device, but not when running tests, and so
+# raises lint errors.
+# pylint: disable=g-bad-import-order
 import pyinotify
 
 import cycler
diff --git a/conman/interface_test.py b/conman/interface_test.py
index f6e03d2..bea0d24 100755
--- a/conman/interface_test.py
+++ b/conman/interface_test.py
@@ -7,6 +7,9 @@
 import shutil
 import tempfile
 
+# This is in site-packages on the device, but not when running tests, and so
+# raises lint errors.
+# pylint: disable=g-bad-import-order
 import wpactrl
 
 import interface