function args
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
I whould like to keep args indented like this:
```
git.project_members.create({'user_id': user.id,
'access_level': gitlab.DEVELOPER_ACCESS},
project_id=project.id)
```
But I get this:
```
git.project_members.create(
{
'user_id': user.id,
'access_level': gitlab.DEVELOPER_ACCESS
},
project_id=project.id)
```
Is there a way with options to keep my favorit indentation for funtions args ?
Contributor guide
Assessment
This issue has not been assessed yet.