Skip to content

Commit

Permalink
Do not split before first argument (#3333)
Browse files Browse the repository at this point in the history
Keep this format:

```
def run(arg, arg, arg, arg,
        arg, arg, arg):
    pass
```
  • Loading branch information
humitos authored and agjohnson committed Nov 29, 2017
1 parent 61dc4b5 commit 1b38e92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .style.yapf
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ SPLIT_BEFORE_EXPRESSION_AFTER_OPENING_PAREN=True

# If an argument / parameter list is going to be split, then split
# before the first argument.
SPLIT_BEFORE_FIRST_ARGUMENT=True
SPLIT_BEFORE_FIRST_ARGUMENT=False

# Set to True to prefer splitting before 'and' or 'or' rather than
# after.
Expand Down

0 comments on commit 1b38e92

Please sign in to comment.