Path 1: 221 calls (1.0)

Text (221)

1def copy_styles(self, text: "Text") -> None:
2        """Copy styles from another Text instance.
3
4        Args:
5            text (Text): A Text instance to copy styles from, must be the same length.
6        """
7        self._spans.extend(text._spans)