Skip to content

Commit

Permalink
Use Python-3 super() syntax in Latin1Prober (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne committed Oct 22, 2021
1 parent c5e5d5a commit f9ef56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chardet/latin1prober.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def __init__(self):
def reset(self):
self._last_char_class = OTH
self._freq_counter = [0] * FREQ_CAT_NUM
CharSetProber.reset(self)
super().reset()

@property
def charset_name(self):
Expand Down

0 comments on commit f9ef56c

Please sign in to comment.