From 92844f806b50729809a5dda8096b92aabf6909d9 Mon Sep 17 00:00:00 2001 From: Marat Radchenko Date: Sun, 4 Feb 2024 16:16:41 +0300 Subject: [PATCH] Fix code format --- src/ue4docker/build.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/ue4docker/build.py b/src/ue4docker/build.py index bd8c054b..a3146dfe 100644 --- a/src/ue4docker/build.py +++ b/src/ue4docker/build.py @@ -111,9 +111,11 @@ def build(): # Print the command-line invocation that triggered this build, masking any supplied passwords args = [ - "*******" - if config.args.password is not None and arg == config.args.password - else arg + ( + "*******" + if config.args.password is not None and arg == config.args.password + else arg + ) for arg in sys.argv ] logger.info("COMMAND-LINE INVOCATION:", False)