Applied Black

This commit is contained in:
Simon Willison 2019-07-07 13:18:15 -07:00
commit c92349e7ee

View file

@ -122,7 +122,9 @@ def publish_subcommand(publish):
app_name = json.loads(create_output)["name"]
for key, value in environment_variables.items():
call(["heroku", "config:set", "-a", app_name, "{}={}".format(key, value)])
call(
["heroku", "config:set", "-a", app_name, "{}={}".format(key, value)]
)
call(["heroku", "builds:create", "-a", app_name, "--include-vcs-ignore"])