Skip to content

Commit f9ef56c

Browse files
authored
Use Python-3 super() syntax in Latin1Prober (#240)
1 parent c5e5d5a commit f9ef56c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

chardet/latin1prober.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def __init__(self):
105105
def reset(self):
106106
self._last_char_class = OTH
107107
self._freq_counter = [0] * FREQ_CAT_NUM
108-
CharSetProber.reset(self)
108+
super().reset()
109109

110110
@property
111111
def charset_name(self):

0 commit comments

Comments
 (0)