mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Don't forget the pylint disables for range
This commit is contained in:
parent
359e8ca2ce
commit
c87a108a12
10 changed files with 10 additions and 10 deletions
|
@ -22,7 +22,7 @@ ensure_in_syspath('../../')
|
|||
import salt.config
|
||||
import salt.loader
|
||||
from salt.modules import boto_cloudtrail
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# Import 3rd-party libs
|
||||
import logging
|
||||
|
|
|
@ -22,7 +22,7 @@ ensure_in_syspath('../../')
|
|||
import salt.config
|
||||
import salt.loader
|
||||
from salt.modules import boto_iot
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# Import 3rd-party libs
|
||||
import logging
|
||||
|
|
|
@ -24,7 +24,7 @@ import salt.config
|
|||
import salt.loader
|
||||
from salt.modules import boto_lambda
|
||||
from salt.exceptions import SaltInvocationError
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# Import 3rd-party libs
|
||||
from tempfile import NamedTemporaryFile
|
||||
|
|
|
@ -23,7 +23,7 @@ ensure_in_syspath('../../')
|
|||
import salt.config
|
||||
import salt.loader
|
||||
from salt.modules import boto_s3_bucket
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# Import 3rd-party libs
|
||||
import logging
|
||||
|
|
|
@ -24,7 +24,7 @@ import salt.loader
|
|||
from salt.modules import boto_vpc
|
||||
from salt.exceptions import SaltInvocationError, CommandExecutionError
|
||||
from salt.modules.boto_vpc import _maybe_set_name_tag, _maybe_set_tags
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# Import 3rd-party libs
|
||||
import salt.ext.six as six
|
||||
|
|
|
@ -21,7 +21,7 @@ ensure_in_syspath('../../')
|
|||
# Import Salt libs
|
||||
import salt.config
|
||||
import salt.loader
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# Import 3rd-party libs
|
||||
import logging
|
||||
|
|
|
@ -22,7 +22,7 @@ ensure_in_syspath('../../')
|
|||
# Import Salt libs
|
||||
import salt.config
|
||||
import salt.loader
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# pylint: disable=import-error,no-name-in-module,unused-import
|
||||
from unit.modules.boto_iot_test import BotoIoTTestCaseMixin
|
||||
|
|
|
@ -23,7 +23,7 @@ ensure_in_syspath('../../')
|
|||
# Import Salt libs
|
||||
import salt.config
|
||||
import salt.loader
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# pylint: disable=import-error,no-name-in-module
|
||||
from unit.modules.boto_lambda_test import BotoLambdaTestCaseMixin, TempZipFile
|
||||
|
|
|
@ -23,7 +23,7 @@ ensure_in_syspath('../../')
|
|||
# Import Salt libs
|
||||
import salt.config
|
||||
import salt.loader
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# pylint: disable=import-error,no-name-in-module,unused-import
|
||||
from unit.modules.boto_s3_bucket_test import BotoS3BucketTestCaseMixin
|
||||
|
|
|
@ -17,7 +17,7 @@ ensure_in_syspath('../../')
|
|||
# Import Salt libs
|
||||
import salt.config
|
||||
import salt.loader
|
||||
from salt.ext.six.moves import range
|
||||
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
||||
|
||||
# pylint: disable=import-error
|
||||
from unit.modules.boto_vpc_test import BotoVpcTestCaseMixin
|
||||
|
|
Loading…
Add table
Reference in a new issue