diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-05-25 03:15:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-25 03:15:43 +0200 |
commit | eb65d88cd4ac6b0362517c7d718cbc9857c30ba3 (patch) | |
tree | 68a805c058287f6d2e494af62b9635daa7c48a5f /tools/common.py | |
parent | e34000653bba6b7f8ec6f2c16dcd87d7a01a3d68 (diff) | |
parent | e8de07dbb15ef235fb76f72b5ef5247d59c56936 (diff) | |
download | fork-godot-webrtc-native-eb65d88cd4ac6b0362517c7d718cbc9857c30ba3.tar.gz fork-godot-webrtc-native-eb65d88cd4ac6b0362517c7d718cbc9857c30ba3.tar.bz2 fork-godot-webrtc-native-eb65d88cd4ac6b0362517c7d718cbc9857c30ba3.zip |
Merge pull request #96 from Faless/fix/black
[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" + ) |