Skip to content

Commit

Permalink
fix: msvs.py: remove overindentation (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Apr 1, 2021
1 parent 13d5b66 commit 3f83e99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pylib/gyp/generator/msvs.py
Expand Up @@ -3276,9 +3276,9 @@ def GetEdges(node):
# append to the default value. I.e. PATH=$(PATH);other_path
edges.update(
{
v
for v in MSVS_VARIABLE_REFERENCE.findall(value)
if v in properties and v != node
v
for v in MSVS_VARIABLE_REFERENCE.findall(value)
if v in properties and v != node
}
)
return edges
Expand Down

0 comments on commit 3f83e99

Please sign in to comment.