stages/noop: fix whitespaces

Be more like PEP-8 and use two newlines where needed.
This commit is contained in:
Christian Kellner 2020-08-11 11:07:35 +02:00
parent e0b7361b26
commit 939a83926e

View file

@ -10,13 +10,16 @@ leaves the tree untouched. Useful for testing, debugging, and wasting time.
import json
import sys
SCHEMA = """
"additionalProperties": true
"""
def main(_tree, options):
print("Not doing anything with these options:", json.dumps(options))
if __name__ == '__main__':
args = json.load(sys.stdin)
r = main(args["tree"], args.get("options", {}))