summaryrefslogtreecommitdiff
path: root/tools/common.py
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2023-05-25 03:15:43 +0200
committerGitHub <noreply@github.com>2023-05-25 03:15:43 +0200
commiteb65d88cd4ac6b0362517c7d718cbc9857c30ba3 (patch)
tree68a805c058287f6d2e494af62b9635daa7c48a5f /tools/common.py
parente34000653bba6b7f8ec6f2c16dcd87d7a01a3d68 (diff)
parente8de07dbb15ef235fb76f72b5ef5247d59c56936 (diff)
downloadfork-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.py5
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"
+ )