Skip to content

Commit d918faa

Browse files
committed
🚒 forgotten exception imports
fixes #85 fixes #84 Signed-off-by: Guyzmo <guyzmo+github@m0g.net>
1 parent 942bae5 commit d918faa

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

git_repo/repo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
print('Please use with python version 3')
135135
sys.exit(1)
136136

137-
from .exceptions import ArgumentError
137+
from .exceptions import ArgumentError, ResourceNotFoundError
138138
from .services.service import RepositoryService
139139

140140
from .kwargparse import KeywordArgumentParser, store_parameter, register_action

git_repo/services/service.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@
1111

1212
from subprocess import call
1313

14-
from ..exceptions import ArgumentError
14+
from ..exceptions import (
15+
ArgumentError,
16+
ResourceError,
17+
ResourceNotFoundError,
18+
ResourceExistsError
19+
)
1520

1621
'''select open command'''
1722

0 commit comments

Comments
 (0)