summaryrefslogtreecommitdiffstats
path: root/gitlint-core/gitlint/shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlint-core/gitlint/shell.py')
-rw-r--r--gitlint-core/gitlint/shell.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/gitlint-core/gitlint/shell.py b/gitlint-core/gitlint/shell.py
index 2f66f30..21dfaba 100644
--- a/gitlint-core/gitlint/shell.py
+++ b/gitlint-core/gitlint/shell.py
@@ -27,8 +27,6 @@ else:
class CommandNotFound(Exception):
"""Exception indicating a command was not found during execution"""
- pass
-
class ShResult:
"""Result wrapper class. We use this to more easily migrate from using https://amoffat.github.io/sh/ to using
the builtin subprocess module"""
@@ -45,8 +43,6 @@ else:
class ErrorReturnCode(ShResult, Exception):
"""ShResult subclass for unexpected results (acts as an exception)."""
- pass
-
def git(*command_parts, **kwargs):
"""Git shell wrapper.
Implemented as separate function here, so we can do a 'sh' style imports: