-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Improve our flake8 linting tests #2356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
Comment on lines
-3279
to
+3281
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This indentation change looks correct, but it would be good to upstream it to (Seems like it was mixing indentation of 4 spaces and 8 spaces before. Now it's consistently 4 spaces. 👍 on the change.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
} | ||
) | ||
return edges | ||
|
Uh oh!
There was an error while loading. Please reload this page.