@classmethod
    def get_navi_link(cls, last_soup, next_):
        """Get link to next or previous comic."""
        img = last_soup.find("img", alt="Next" if next_ else "Back")
        return img.parent if img else None