Return ``True`` if this identifier contains a wildcard.
(self)
| 447 | """ |
| 448 | |
| 449 | def is_wildcard(self): |
| 450 | """Return ``True`` if this identifier contains a wildcard.""" |
| 451 | _, token = self.token_next_by(t=T.Wildcard) |
| 452 | return token is not None |
| 453 | |
| 454 | def get_typecast(self): |
| 455 | """Returns the typecast or ``None`` of this object as a string.""" |