From f77102d7ad3b4966b3760a99ff01141300b36e1a Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Tue, 18 Oct 2016 20:21:35 -0400 Subject: [PATCH] Flatten the lines a bit. --- xonstat/__init__.py | 63 ++++++++++----------------------------------- 1 file changed, 14 insertions(+), 49 deletions(-) diff --git a/xonstat/__init__.py b/xonstat/__init__.py index 86024a0..4071dd5 100644 --- a/xonstat/__init__.py +++ b/xonstat/__init__.py @@ -135,63 +135,28 @@ def main(global_config, **settings): # SERVER ROUTES config.add_route("server_index", "/servers") - config.add_view( - view=ServerIndex, - route_name="server_index", - attr="html", - renderer="server_index.mako", - accept="text/html" - ) - config.add_view( - view=ServerIndex, - route_name="server_index", - attr="json", - renderer="json", - accept="text/json" - ) + config.add_view(view=ServerIndex, route_name="server_index", attr="html", + renderer="server_index.mako", accept="text/html") + config.add_view(view=ServerIndex, route_name="server_index", attr="json", renderer="json", + accept="text/json") config.add_route("server_top_maps", "/server/{id:\d+}/topmaps") - config.add_view( - view=ServerTopMaps, - route_name="server_top_maps", - attr="json", - renderer="json", - accept="text/json" - ) + config.add_view(view=ServerTopMaps, route_name="server_top_maps", attr="json", renderer="json", + accept="text/json") config.add_route("server_top_players", "/server/{id:\d+}/topplayers") - config.add_view( - view=ServerTopPlayers, - route_name="server_top_players", - attr="json", - renderer="json", - accept="text/json" - ) + config.add_view(view=ServerTopPlayers, route_name="server_top_players", attr="json", + renderer="json", accept="text/json") config.add_route("server_top_scorers", "/server/{id:\d+}/topscorers") - config.add_view( - view=ServerTopScorers, - route_name="server_top_scorers", - attr="json", - renderer="json", - accept="text/json" - ) + config.add_view(view=ServerTopScorers, route_name="server_top_scorers", attr="json", + renderer="json", accept="text/json") config.add_route("server_info", "/server/{id:\d+}") - config.add_view( - view=ServerInfo, - route_name="server_info", - attr="html", - renderer="server_info.mako", - accept="text/html" - ) - config.add_view( - view=ServerInfo, - route_name="server_info", - attr="json", - renderer="json", - accept="text/json" - ) + config.add_view(view=ServerInfo, route_name="server_info", attr="html", + renderer="server_info.mako", accept="text/html") + config.add_view(view=ServerInfo, route_name="server_info", attr="json", renderer="json", + accept="text/json") # MAP ROUTES config.add_route("map_index", "/maps") -- 2.39.2