Last active
June 15, 2018 04:57
-
-
Save hamishcoleman/6a77aea987ff2884ad702594d853bd1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Indented the way I did it | |
def main(): | |
subp_cmds = [] | |
subp_cmds['grid']['parser'].add_argument('--separate_inout', # noqa | |
action='store_const', const=True, default=False, # noqa | |
help='Show incoming and outgoing on separate lines of the grid' # noqa | |
) | |
# Indented the way the linter wanted | |
def main(): | |
subp_cmds = [] | |
subp_cmds['grid']['parser'].add_argument('--separate_inout', | |
action='store_const', | |
const=True, default=False, | |
help='Show incoming and outgoing' | |
' on separate lines of the ' | |
'grid' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment