Bug 1501776: [taskgraph] Fix flake8 error; rs=bustage-fix

Differential Revision: https://phabricator.services.mozilla.com/D9745

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tom Prince 2018-10-25 01:32:07 +00:00
parent 44c897a308
commit 8329f523fd

View File

@ -13,7 +13,10 @@ from ..util.schema import Schema
schema = Schema({
Required('primary-dependency', 'primary dependency task'): Task,
Required('dependent-tasks', 'dictionary of dependent tasks, keyed by kind'): {basestring: Task},
Required(
'dependent-tasks',
'dictionary of dependent tasks, keyed by kind',
): {basestring: Task},
})