mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
utils/scanpypi: import third party modules after the standard ones
Move imports from six package after the standard modules. Resolves pylint warnings. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
3fcc7599d5
commit
e273c36ad0
@ -10,9 +10,6 @@ from __future__ import print_function
|
|||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
import argparse
|
import argparse
|
||||||
import json
|
import json
|
||||||
import six.moves.urllib.request
|
|
||||||
import six.moves.urllib.error
|
|
||||||
import six.moves.urllib.parse
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
@ -25,6 +22,9 @@ import textwrap
|
|||||||
import tempfile
|
import tempfile
|
||||||
import imp
|
import imp
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
|
import six.moves.urllib.request
|
||||||
|
import six.moves.urllib.error
|
||||||
|
import six.moves.urllib.parse
|
||||||
from six.moves import map
|
from six.moves import map
|
||||||
from six.moves import zip
|
from six.moves import zip
|
||||||
from six.moves import input
|
from six.moves import input
|
||||||
|
Loading…
x
Reference in New Issue
Block a user