From ad29255a43b15bc3d8b583ad3dc301180bc51c2e Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 18 Jul 2025 12:59:56 +1000 Subject: [PATCH] fix: Add _blank target for links --- shakestation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shakestation.py b/shakestation.py index a4913c7..6a17ecc 100644 --- a/shakestation.py +++ b/shakestation.py @@ -87,11 +87,11 @@ def domain_info(params, authentication): if domainType == "marketplace": price = data["data"].get("price", "No price available") - returnInfo = f"

Score: {score}
Price: {price}

View Listing" + returnInfo = f"

Score: {score}
Price: {price}

View Listing" else: stakedData = checkStaked(domain) if stakedData: - returnInfo += f"

Staked: {stakedData.get('price', '-1')} HNS ({stakedData.get('renew_price','-1')} HNS/yr)

View Listing" + returnInfo += f"

Staked: {stakedData.get('price', '-1')} HNS ({stakedData.get('renew_price','-1')} HNS/yr)

View Listing"