# HG changeset patch # User Edouard Tisserant # Date 1552321215 -3600 # Node ID 1378c18402c3f651f309de1bea445ab2262562dc # Parent 48ebcbe7f19b617949dd4ceb697e198ca123e705 Fixed more pylint reports : connectors/__init__.py:31: [W1652(deprecated-types-field), ] Accessing a deprecated fields on the types module in fact, it should have been unused import. diff -r 48ebcbe7f19b -r 1378c18402c3 connectors/__init__.py --- a/connectors/__init__.py Mon Mar 11 13:51:07 2019 +0100 +++ b/connectors/__init__.py Mon Mar 11 17:20:15 2019 +0100 @@ -28,7 +28,6 @@ from __future__ import absolute_import from os import listdir, path -import util.paths as paths from connectors.ConnectorBase import ConnectorBase from types import ClassType