gochan-org / gochan

Too many blank lines found FLK-E303
Style
Minor
2 months ago2 years old
too many blank lines (2)
420	print("Creating release for", gcos_name, "\n")
421
422
423	mkdir(path.join(release_dir, "html"))424	mkdir(path.join(release_dir, "sql"))
425	for file in release_files:
426		srcinfo = pathinfo(file)
too many blank lines (2)
351			sys.exit(1)
352
353
354	if path.exists(gochan_exe) is False:355		build()
356	print("Installing", gochan_exe, "to", path.join(prefix, "bin", gochan_exe))
357	try:
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: