Resolve PyLint "import-error"

This commit is contained in:
Ivan Kravets
2019-05-10 13:00:53 +03:00
parent a21d75b273
commit 131144ec34
12 changed files with 30 additions and 23 deletions

View File

@@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from twisted.internet import reactor
from twisted.web import static
from twisted.internet import reactor # pylint: disable=import-error
from twisted.web import static # pylint: disable=import-error
class WebRoot(static.File):