Get types of expression(s) at a location.
(self, location: str)
| 593 | return self.run_inspection_by_position(state.tree, line, column, method) |
| 594 | |
| 595 | def get_type(self, location: str) -> dict[str, object]: |
| 596 | """Get types of expression(s) at a location.""" |
| 597 | return self.run_inspection(location, self.expr_type) |
| 598 | |
| 599 | def get_attrs(self, location: str) -> dict[str, object]: |
| 600 | """Get attributes of expression(s) at a location.""" |
no test coverage detected