Skip to content

Commit

Permalink
Merge pull request spectacles-ci#106 from iserko/fix_flake8
Browse files Browse the repository at this point in the history
Fix Flake8 error
  • Loading branch information
joshtemple authored Nov 11, 2019
2 parents 4d64fb5 + fcd4af3 commit db93444
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spectacles/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ def _query(self, mode: str = "batch") -> List[SqlError]:
logger.debug("Querying one dimension at at time")
for dimension in explore.dimensions:
task = loop.create_task(
self._query_dimension(session, model, explore, dimension)
self._query_dimension(
session, model, explore, dimension)
)
tasks.append(task)

Expand Down

0 comments on commit db93444

Please sign in to comment.