diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-08-21 16:40:43 +0100 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-08-21 16:51:30 +0100 |
commit | 5f092cf7bb1c609bdb4c3ddfa48a56c0ed7eb5be (patch) | |
tree | 8546a19e293fc663c6f7c3e8cce3f72e9c6f4d6a /core/SCsub | |
parent | 8c4f55663710af68304f3b84c86fe1fc1080784f (diff) |
Fix new black style check failures in various files.
Diffstat (limited to 'core/SCsub')
-rw-r--r-- | core/SCsub | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/SCsub b/core/SCsub index d08f17c60a..40ee78d3ea 100644 --- a/core/SCsub +++ b/core/SCsub @@ -162,13 +162,17 @@ env.CommandNoCache( # Authors env.Depends("#core/authors.gen.h", "../AUTHORS.md") env.CommandNoCache( - "#core/authors.gen.h", "../AUTHORS.md", env.Run(core_builders.make_authors_header, "Generating authors header."), + "#core/authors.gen.h", + "../AUTHORS.md", + env.Run(core_builders.make_authors_header, "Generating authors header."), ) # Donors env.Depends("#core/donors.gen.h", "../DONORS.md") env.CommandNoCache( - "#core/donors.gen.h", "../DONORS.md", env.Run(core_builders.make_donors_header, "Generating donors header."), + "#core/donors.gen.h", + "../DONORS.md", + env.Run(core_builders.make_donors_header, "Generating donors header."), ) # License |