(self)
| 43 | self.string = string |
| 44 | self.__dict__.update(kwargs) |
| 45 | def copy(self): |
| 46 | k = self.__dict__.copy() |
| 47 | k.pop("string") |
| 48 | return Text(self.string, **k) |
| 49 | def draw(self): |
| 50 | """ Draws the node label. |
| 51 | Optional properties include width, fill and fontsize. |
no test coverage detected