properly merge all CSS
All checks were successful
Build and Publish Jimmy.2 / build_and_publish (push) Successful in 7s

This commit is contained in:
Nexus 2024-05-03 20:22:50 +01:00
parent 0f36e92785
commit 34194aed57
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -49,9 +49,10 @@ class ElectionCog(commands.Cog):
if not good_soup: if not good_soup:
return return
css: str = "\n".join([x.get_text() for x in good_soup.find_all("style") if "Results" in x.get_text()]) css: str = "\n".join([x.get_text() for x in good_soup.find_all("style")])
def find_colour(style_name: str, want: str = "background-colour") -> str | None: def find_colour(style_name: str, want: str = "background-colour") -> str | None:
self.log.info("Looking for style %r", style_name)
index = css.index(style_name) + len(style_name) + 1 index = css.index(style_name) + len(style_name) + 1
value = "" value = ""
for char in css[index:]: for char in css[index:]: