remove prints

This commit is contained in:
Luke Robles 2023-04-26 20:45:04 -07:00
parent 773eb0ddae
commit e8743f24da

View File

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