Add fields to tab completion list.
(self)
| 578 | return attrs |
| 579 | |
| 580 | def __dir__(self): |
| 581 | # type: () -> List[str] |
| 582 | """ |
| 583 | Add fields to tab completion list. |
| 584 | """ |
| 585 | return sorted(itertools.chain(self._superdir(), self.default_fields)) |
| 586 | |
| 587 | def __repr__(self): |
| 588 | # type: () -> str |