pylint: Drop non-existing IPAddressField

horizon/forms/__init__.py exposed IPAddressField via __all__,
but IPAddressField does not exist in Django code.
It addresses pylint undefined-all-variable error.

Change-Id: I5e5cc802c0d75e91fad769cc381368b532561476
This commit is contained in:
Akihiro Motoki 2018-12-09 04:56:26 +09:00
parent 02a0f81f96
commit 51251d9d67
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,6 @@ disable=
not-callable,
raising-non-exception,
redundant-keyword-arg,
undefined-all-variable,
unexpected-keyword-arg,
# "W" Warnings for stylistic problems or minor programming issues
arguments-differ,

View File

@ -77,7 +77,7 @@ __all__ = [
'DateTimeField', 'TimeField', 'RegexField', 'EmailField', 'FileField',
'ImageField', 'URLField', 'BooleanField', 'NullBooleanField',
'ChoiceField', 'MultipleChoiceField', 'ComboField', 'MultiValueField',
'FloatField', 'DecimalField', 'SplitDateTimeField', 'IPAddressField',
'FloatField', 'DecimalField', 'SplitDateTimeField',
'GenericIPAddressField', 'FilePathField', 'SlugField', 'TypedChoiceField',
'TypedMultipleChoiceField',