Skip to content

Commit 9973ebc

Browse files
committed
tools: fix install code style
1 parent b79a36c commit 9973ebc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/install.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ def corepack_files(action):
123123
def subdir_files(path, dest, action):
124124
ret = {}
125125
for dirpath, dirnames, filenames in os.walk(path):
126-
if sys.platform == 'win32': dirpath = dirpath.replace('\\', '/')
126+
if sys.platform == 'win32':
127+
dirpath = dirpath.replace('\\', '/')
127128
files_in_path = [dirpath + '/' + f for f in filenames if f.endswith('.h')]
128129
ret[dest + dirpath.replace(path, '')] = files_in_path
129130
for subdir, files_in_path in ret.items():

0 commit comments

Comments
 (0)