Skip to content

Commit

Permalink
fix(build): black failing on master, add to required checks (#13039)
Browse files Browse the repository at this point in the history
* fix(build): black failing on master

* Add pre-commit to required checks
  • Loading branch information
robdiciuccio authored Feb 9, 2021
1 parent bbcb411 commit 1a96102
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ github:
- cypress-matrix (3, chrome)
- docker-build
- frontend-build
- pre-commit (3.7)
- python-lint (3.7)
- test-mysql (3.7)
- test-postgres (3.7)
Expand Down
12 changes: 6 additions & 6 deletions superset/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,13 +623,13 @@ class CeleryConfig: # pylint: disable=too-few-public-methods
"task": "email_reports.schedule_hourly",
"schedule": crontab(minute=1, hour="*"),
},
'reports.scheduler': {
'task': 'reports.scheduler',
'schedule': crontab(minute='*', hour='*'),
"reports.scheduler": {
"task": "reports.scheduler",
"schedule": crontab(minute="*", hour="*"),
},
'reports.prune_log': {
'task': 'reports.prune_log',
'schedule': crontab(minute=0, hour=0),
"reports.prune_log": {
"task": "reports.prune_log",
"schedule": crontab(minute=0, hour=0),
},
}

Expand Down

0 comments on commit 1a96102

Please sign in to comment.