Skip to content

Commit

Permalink
fixup! chore: fix new issues reported by linter
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed May 23, 2020
1 parent 22fa4b1 commit 5ebb05c
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pylib/gyp/generator/ninja.py
Original file line number Diff line number Diff line change
Expand Up @@ -1486,15 +1486,13 @@ def WriteLinkForArch(
]
library_dirs = [
"/LIBPATH:"
+ QuoteShellArgument(self.GypPathToNinja(library_dirs), self.flavor)
for library_dirs in library_dirs
+ QuoteShellArgument(self.GypPathToNinja(library_dir), self.flavor)
for library_dir in library_dirs
]
else:
library_dirs = [
QuoteShellArgument(
"-L" + self.GypPathToNinja(library_dirs), self.flavor
)
for library_dirs in library_dirs
QuoteShellArgument("-L" + self.GypPathToNinja(library_dir), self.flavor)
for library_dir in library_dirs
]

libraries = gyp.common.uniquer(
Expand Down

0 comments on commit 5ebb05c

Please sign in to comment.