Last active
March 16, 2019 23:14
-
-
Save dogweather/4491790defab53c3f267f49ed7ccfe24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def __init__(self): | |
super().__init__() | |
# A flag, set after post-processing is finished, to | |
# avoid an infinite loop. | |
self.data_submitted = False | |
# The object to return for conversion to a JSON tree. | |
# All the parse methods add their results to this | |
# structure. | |
self.sports = items.SportsInventory(categories=[]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment