config: Fix mypy error for git.exc.
Error was: conservancy_beancount/config.py:142: error: Trying to read deleted variable "exc" Not entirely sure what's causing this, but since GitPython also imports the exceptions at the root of the package with "from git.exc import *", we can import them from there instead, which seems to appease mypy.
This commit is contained in:
parent
7783f7ad10
commit
43548a1ac9
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ class Config:
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
return git.Repo(self.file_config['Beancount']['books dir'])
|
return git.Repo(self.file_config['Beancount']['books dir'])
|
||||||
except (KeyError, git.exc.GitError):
|
except (KeyError, git.GitError):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def cache_dir_path(self, name: str='conservancy_beancount') -> Optional[Path]:
|
def cache_dir_path(self, name: str='conservancy_beancount') -> Optional[Path]:
|
||||||
|
|
Loading…
Reference in a new issue