USE_TABS plus spaces in breaking long lines
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
x_dt = start_dt_tmp + timedelta(seconds=seconds_total, microseconds=miliseconds * 1000)
is converted to
x_dt = start_dt_tmp + timedelta(
seconds=seconds_total, microseconds=miliseconds * 1000)
mixing tabs and spaces
Contributor guide
Assessment
This issue has not been assessed yet.