remove prints

This commit is contained in:
Luke Robles 2023-04-26 20:45:04 -07:00
parent b99a80b72a
commit 0d1ac0fe60

View File

@ -11,8 +11,8 @@ async def get_ship(ship_name):
ship = await Ship(name=ship_name).get_ships_pages_async() ship = await Ship(name=ship_name).get_ships_pages_async()
ship = ship[0] ship = ship[0]
pp = pprint.PrettyPrinter(indent=4) # pp = pprint.PrettyPrinter(indent=4)
pp.pprint(ship) # pp.pprint(ship)
ship_picture = ship["media"][0]["images"]["wallpaper_thumb"] ship_picture = ship["media"][0]["images"]["wallpaper_thumb"]
wiki_ship_name = ship["url"].split("/")[-1].split("-")[0] wiki_ship_name = ship["url"].split("/")[-1].split("-")[0]