Skip to content

Commit d18b005

Browse files
committed
Fix a pyflakes warning
1 parent 898256d commit d18b005

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hererocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ def make(self):
13061306
run("ar", "rcu", self.arch_file, lib_objs)
13071307
run("ranlib", self.arch_file)
13081308

1309-
built_luac_objs = [obj for obj in luac_objs if obj in objs]
1309+
built_luac_objs = [obj_ for obj_ in luac_objs if obj_ in objs]
13101310

13111311
# Handle the case when there are no source files for `luac`, likely because installing
13121312
# from a git repo that does not have them, like the default one.

0 commit comments

Comments
 (0)