Skip to content

Commit 91e870b

Browse files
committed
fix python formatting
1 parent 813ff47 commit 91e870b

12 files changed

+15
-4
lines changed

core/core_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
"""
5+
56
import zlib
67

78
from platform_methods import subprocess_main

editor/editor_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
55
"""
6+
67
import os
78
import os.path
89
import shutil

gles3_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
55
"""
6+
67
import os.path
78

89
from typing import Optional

glsl_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
55
"""
6+
67
import os.path
78
from typing import Optional, Iterable
89

main/main_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
55
"""
6+
67
from platform_methods import subprocess_main
78

89

modules/bitcoin/SCsub

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env python
22

3-
Import('env')
3+
Import("env")
44

55
env_bitcoin = env.Clone()
66
module_obj = []
77

88
env_bitcoin.add_source_files(module_obj, "*.cpp")
9-
env_bitcoin.add_source_files(module_obj, "*.c")
9+
env_bitcoin.add_source_files(module_obj, "*.c")
1010

11-
env_bitcoin.modules_sources += module_obj
11+
env_bitcoin.modules_sources += module_obj

modules/bitcoin/config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ def can_build(env, platform):
22
print("Bitcoin module: Checking if can build")
33
return True
44

5+
56
def configure(env):
67
print("Bitcoin module: Configuring")
7-
pass
8+
pass

platform/linuxbsd/platform_linuxbsd_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
55
"""
6+
67
import os
78
from platform_methods import subprocess_main
89

platform/macos/platform_macos_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
55
"""
6+
67
import os
78
from platform_methods import subprocess_main
89

platform/windows/platform_windows_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
55
"""
6+
67
import os
78
from detect import get_mingw_bin_prefix
89
from detect import try_cmd

scene/theme/default_theme_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
44
55
"""
6+
67
import os
78
import os.path
89
from platform_methods import subprocess_main

scu_builders.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Functions used to generate scu build source files during build time
22
"""
3+
34
import glob, os
45
import math
56
from pathlib import Path

0 commit comments

Comments
 (0)