From 81c593399e9b1b0193f639b4ef4b58f17c61012e Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Wed, 27 Apr 2022 20:59:20 -0500 Subject: [PATCH] Format changes with black --- hscommon/build.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hscommon/build.py b/hscommon/build.py index fa442bd7..e772b0ff 100644 --- a/hscommon/build.py +++ b/hscommon/build.py @@ -172,7 +172,9 @@ def build_dmg(app_path, destfolder): ) print("Building %s" % dmgname) # UDBZ = bzip compression. UDZO (zip compression) was used before, but it compresses much less. - print_and_do('hdiutil create "{}" -format UDBZ -nocrossdev -srcdir "{}"'.format(op.join(destfolder, dmgname), dmgpath)) + print_and_do( + 'hdiutil create "{}" -format UDBZ -nocrossdev -srcdir "{}"'.format(op.join(destfolder, dmgname), dmgpath) + ) print("Build Complete")