()
| 901 | return f"{icon} {filename}" |
| 902 | |
| 903 | def get_sponsor_tier_config(tier_key): |
| 904 | """Returns the sponsor tier configuration for 3 or 9.""" |
| 905 | tier_key = str(tier_key or "").replace("$", "").strip() |
| 906 | return SPONSORS_TIERS.get(tier_key) |
| 907 | |
| 908 | |
| 909 | def get_sponsors_tier_root_path(tier_key): |
| 910 | """Returns the Termux home folder path for a sponsor tier.""" |
| 911 | config = get_sponsor_tier_config(tier_key) |
no test coverage detected