1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-14 16:26:23 -07:00

Clean up build.py some more, bump version to 3.10

This commit is contained in:
Eggbertx 2024-03-05 21:37:45 -08:00
parent 852dc8dc09
commit cc5f1ec07f
7 changed files with 30 additions and 45 deletions

View file

@ -81,7 +81,7 @@ class TestingOptions:
def board_exists(self, board: str):
req = urlopen(urljoin(default_site, "boards.json")) # skipcq: BAN-B310
req = urlopen(urljoin(default_site, "boards.json")) # skipcq: BAN-B310
boards = json.load(req)['boards']
for entry in boards:
if entry['board'] == board: