import (...) # comment isn't reformatted
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
This 105-character import line doesn't get reformatted to 80 columns:
```python
from typing import (Any, Callable, Dict, List, Optional, Sequence, Text) # pylint: disable=unused-import
```
(In case you're wondering why some of the imports are unused -- this is because yapf doesn't yet support variable annotations (new in Python 3.6), so some of the typing imports appear only in `# type:` comments.)
Contributor guide
Assessment
This issue has not been assessed yet.