marksverdhei
WIP: Add attempt count
614d543
raw
history blame
199 Bytes
import logging
from src import interface
logging.basicConfig(level="DEBUG")
def main():
demo = interface.get_demo(wip=True)
demo.launch(debug=True)
if __name__ == "__main__":
main()