Add tests for BGG

This commit is contained in:
2023-06-01 19:47:32 -04:00
parent 6dc09e723d
commit 7e16388f81
3 changed files with 35 additions and 5 deletions

View File

@ -20,7 +20,10 @@ def take_first(thing: Optional[list]) -> str:
pass
if first:
first = first.get_text()
try:
first = first.get_text()
except:
pass
return first