gochan-org / gochan

Consider decorating method with @staticmethod PYL-R0201
Performance
Major
2 months agoa year old
Method doesn't use the class instance and could be converted into a static method
80				raise ValueError("Unrecognized browser argument %s" % browser)
81
82
83	def board_exists(self, board: str):84		req = urlopen(urljoin(default_site, "boards.json"))  # skipcq: BAN-B310
85		boards = json.load(req)['boards']
86		for entry in boards: