Attribute calls are like `a.do_something()` rather than `do_something()` :rtype: bool
(self)
| 204 | return f"{self.token}()" |
| 205 | |
| 206 | def is_attr(self): |
| 207 | """ |
| 208 | Attribute calls are like `a.do_something()` rather than `do_something()` |
| 209 | :rtype: bool |
| 210 | """ |
| 211 | return self.owner_token is not None |
| 212 | |
| 213 | def matches_variable(self, variable): |
| 214 | """ |
no outgoing calls
no test coverage detected