fix: pylint checks in connectors/sqla/models.py (#10974)

* Removed unused pylint rule `too-many-instance-attributes` from SqlaTable class.

* Removed unecessary rule: `bad-whitespace` from `get_sqla_query` method

* Disabling too-many-instance-attributes since it fails on CI
This commit is contained in:
Kasia Kucharczyk 2020-09-23 19:47:12 +02:00 committed by GitHub
parent bade279883
commit fb6f14c469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -822,7 +822,7 @@ class SqlaTable( # pylint: disable=too-many-public-methods,too-many-instance-at
groupby: Optional[List[str]] = None,
filter: Optional[ # pylint: disable=redefined-builtin
List[Dict[str, Any]]
] = None, # pylint: disable=bad-whitespace
] = None,
is_timeseries: bool = True,
timeseries_limit: int = 15,
timeseries_limit_metric: Optional[Metric] = None,