diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-05-25 02:31:01 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-05-25 02:42:26 +0200 |
commit | e8de07dbb15ef235fb76f72b5ef5247d59c56936 (patch) | |
tree | 68a805c058287f6d2e494af62b9635daa7c48a5f /tools/common.py | |
parent | e34000653bba6b7f8ec6f2c16dcd87d7a01a3d68 (diff) | |
download | godot-webrtc-native-e8de07dbb15ef235fb76f72b5ef5247d59c56936.tar.gz godot-webrtc-native-e8de07dbb15ef235fb76f72b5ef5247d59c56936.tar.bz2 godot-webrtc-native-e8de07dbb15ef235fb76f72b5ef5247d59c56936.zip |
[CI] Fix python black formatting.
Diffstat (limited to 'tools/common.py')
-rw-r--r-- | tools/common.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/common.py b/tools/common.py index aa99c5c..4bd5ada 100644 --- a/tools/common.py +++ b/tools/common.py @@ -1,8 +1,9 @@ - def exists(env): return True def generate(env): env["DEPS_SOURCE"] = env.Dir("#thirdparty").abspath - env["DEPS_BUILD"] = env.Dir("#bin/thirdparty").abspath + "/{}.{}.dir".format(env["suffix"][1:], "RelWithDebInfo" if env["debug_symbols"] else "Release") + env["DEPS_BUILD"] = env.Dir("#bin/thirdparty").abspath + "/{}.{}.dir".format( + env["suffix"][1:], "RelWithDebInfo" if env["debug_symbols"] else "Release" + ) |