fix: removed disabled lint rule `too-many-locals` in connectors/base/models.py (#10958)

This commit is contained in:
Kasia Kucharczyk 2020-09-21 10:13:38 +02:00 committed by GitHub
parent 4835d3b0a2
commit fd0f6e1541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ class BaseDatasource(
fkmany: List[Column],
fkmany_class: Type[Union["BaseColumn", "BaseMetric"]],
key_attr: str,
) -> List[Column]: # pylint: disable=too-many-locals
) -> List[Column]:
"""Update ORM one-to-many list from object list
Used for syncing metrics and columns using the same code"""