Convert self to a tuple containing all the attributes/keys that are not `None`.
(self)
| 131 | return callable, args, *remaining |
| 132 | |
| 133 | def to_tuple(self) -> Tuple[Any, ...]: |
| 134 | """ |
| 135 | Convert self to a tuple containing all the attributes/keys that are not `None`. |
| 136 | """ |
| 137 | return tuple(self[k] for k in self.keys()) |
no outgoing calls