Minor documentation fix.
This commit is contained in:
parent
884d7dab4a
commit
13ee7c4c17
1 changed files with 4 additions and 2 deletions
|
|
@ -25,8 +25,10 @@ class TokenExtractor:
|
|||
def __init__(self):
|
||||
self.iterated_elements = []
|
||||
def clear(self):
|
||||
""" Reset any content stored within a TokenExtractor: object. Useful to
|
||||
start a new parsing without creating a new instance. """
|
||||
"""
|
||||
Reset any content stored within a TokenExtractor object. Useful to start
|
||||
a new parsing without creating a new instance.
|
||||
"""
|
||||
self.iterated_elements = []
|
||||
def element_iterated_already(self, html_element):
|
||||
if html_element in self.iterated_elements:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue