tiborpilz / commitomatic

Use of FIXME/XXX/TODO encountered PYL-W0511
Documentation
Minor
a year agoa year old
TODO: Fix this
 77        else:
 78            self.disable_flag(flag)
 79
 80    # TODO: Fix this 81    def get_message_footer(self):
 82        author = self.git.config("user.name")
 83        email = self.git.config("user.email")
TODO: error handling
 14    def __init__(self, path: Path, use_staged: bool = True):
 15        self.diff_target = None
 16        self.path = path
 17        # TODO: error handling 18        self.repo = Repo(path)
 19        self.git = self.repo.git
 20        self.files = []