Skip to content
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

[2016.3] Pylint fix #39202

Merged
merged 1 commit into from Feb 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions salt/modules/win_ip.py
Expand Up @@ -76,7 +76,7 @@ def _interface_configs():
current_ip_list.append(val)

elif 'ip address' in lkey:
current_iface.setdefault('ip_addrs', []).append({key:val})
current_iface.setdefault('ip_addrs', []).append({key: val})

elif 'subnet prefix' in lkey:
subnet, _, netmask = val.split(' ', 2)
Expand All @@ -90,7 +90,6 @@ def _interface_configs():
return ret



def raw_interface_configs():
'''
Return raw configs for all interfaces
Expand Down