From 9ede7d27f88cc8e6b4ed0ee0df18ae04ece4794b Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Thu, 4 Apr 2024 14:44:59 -0700 Subject: [PATCH] Get rid of the emoji in the hull health --- app/star_citizen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/star_citizen.py b/app/star_citizen.py index 5173871c..752ba731 100755 --- a/app/star_citizen.py +++ b/app/star_citizen.py @@ -371,7 +371,7 @@ async def get_ship(ship_name): soup.find("div", {"class": "infobox__label"}, string="Health") .findNext("div", {"class": "infobox__data"}) .text - ) + ).split()[0] except Exception: health = "N/A"