"""Scoreboard page handler.""" import tornado.web class ScoreboardPageHandler(tornado.web.RequestHandler): """Serves the scoreboard page.""" def get(self): self.render("scoreboard.html")