In [2]:
#! /usr/bin/python

import dominate # 'pip install dominate' must be run once before this
from dominate.tags import *
import re # Only needed because dominate doesn't let us set tab indentation
import tempfile
import webbrowser

In [7]:
checkdom = dominate.tags.a('check', 'blah')

In [8]:
checkdom()


---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-8-15151211f817> in <module>()
----> 1 checkdom()

TypeError: __call__() takes exactly 2 arguments (1 given)

In [ ]: