10000 Remove unneeded list · pygame/python-for-android@4f11666 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4f11666

Browse files
committed
Remove unneeded list
¡¡¡Thanks @KeyWeeUsr!!!
1 parent 461545b commit 4f11666

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/python.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ def create_python_bundle(self, dirn, arch):
267267
'2' if self.version[0] == '2' else '',
268268
self.major_minor_version_string
269269
))
270-
module_filens = list(glob.glob(join(modules_build_dir, '*.so')) +
271-
glob.glob(join(modules_build_dir, '*.py')))
270+
module_filens = (glob.glob(join(modules_build_dir, '*.so')) +
271+
glob.glob(join(modules_build_dir, '*.py')))
272272
info("Copy {} files into the bundle".format(len(module_filens)))
273273
for filen in module_filens:
274274
info(" - copy {}".format(filen))

0 commit comments

Comments
 (0)
0