summaryrefslogtreecommitdiffstats
path: root/gitlint-core/gitlint/hooks.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlint-core/gitlint/hooks.py')
-rw-r--r--gitlint-core/gitlint/hooks.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gitlint-core/gitlint/hooks.py b/gitlint-core/gitlint/hooks.py
index 98ded18..98a1702 100644
--- a/gitlint-core/gitlint/hooks.py
+++ b/gitlint-core/gitlint/hooks.py
@@ -2,6 +2,7 @@ import os
import shutil
import stat
+from gitlint.config import LintConfig
from gitlint.exception import GitlintError
from gitlint.git import git_hooks_dir
from gitlint.utils import FILE_ENCODING
@@ -19,7 +20,7 @@ class GitHookInstaller:
"""Utility class that provides methods for installing and uninstalling the gitlint commitmsg hook."""
@staticmethod
- def commit_msg_hook_path(lint_config):
+ def commit_msg_hook_path(lint_config: LintConfig) -> str:
return os.path.join(git_hooks_dir(lint_config.target), COMMIT_MSG_HOOK_DST_PATH)
@staticmethod