fix values_list

This commit is contained in:
Maxim Kurnikov
2019-02-07 01:01:05 +03:00
parent 191496ed72
commit 3fb3bbcf19
5 changed files with 38 additions and 8 deletions

View File

@@ -76,10 +76,12 @@ IGNORED_ERRORS = {
],
'aggregation': [
'Incompatible types in assignment (expression has type "QuerySet[Any]", variable has type "List[Any]")',
'"as_sql" undefined in superclass'
'"as_sql" undefined in superclass',
'Incompatible types in assignment (expression has type "FlatValuesListIterable", variable has type "ValuesListIterable")'
],
'aggregation_regress': [
'Incompatible types in assignment (expression has type "List[str]", variable has type "QuerySet[Author]")'
'Incompatible types in assignment (expression has type "List[str]", variable has type "QuerySet[Author]")',
'Incompatible types in assignment (expression has type "FlatValuesListIterable", variable has type "QuerySet[Any]")'
],
'apps': [
'Incompatible types in assignment (expression has type "str", target has type "type")',