Skip to content

Commit eb89154

Browse files
committed
In the TextMatrix constructor, use Python 3's super().
1 parent f675a9e commit eb89154

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

textplot/matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(self, text):
9292
text (Text): The source text.
9393
"""
9494

95-
super(self.__class__, self).__init__()
95+
super().__init__()
9696
self.text = text
9797

9898

0 commit comments

Comments
 (0)