Skip to content

Commit 7f0db14

Browse files
committed
Format superclass initialization in Text entity
1 parent 70cd1cb commit 7f0db14

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

engine/core/text.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ def __init__(
6666

6767
self._update_text_surface()
6868

69-
super().__init__(x, y, width=self.text_rect.width, height=self.text_rect.height, color=self.color)
69+
super().__init__(
70+
x, y, width=self.text_rect.width, height=self.text_rect.height, color=self.color
71+
)
7072

7173
def _update_text_surface(self) -> None:
7274
"""

0 commit comments

Comments
 (0)