Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self):
self.current_event = None
UnicodeText.__init__(self, '')
def __init__(self, title):
text = ["Question: ", ('title', title), "\n"]
UnicodeText.__init__(self, text)
def __init__(self, stats):
text = ["\n", ('metadata', stats)]
UnicodeText.__init__(self, text)
def __init__(self, url):
text = ["\n", ('heading', 'Question URL: '), url]
UnicodeText.__init__(self, text)