summaryrefslogtreecommitdiffstats
path: root/pre_commit_hooks/detect_private_key.py
diff options
context:
space:
mode:
Diffstat (limited to 'pre_commit_hooks/detect_private_key.py')
-rw-r--r--pre_commit_hooks/detect_private_key.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pre_commit_hooks/detect_private_key.py b/pre_commit_hooks/detect_private_key.py
index 18f9539..cd51f90 100644
--- a/pre_commit_hooks/detect_private_key.py
+++ b/pre_commit_hooks/detect_private_key.py
@@ -1,5 +1,6 @@
+from __future__ import annotations
+
import argparse
-from typing import Optional
from typing import Sequence
BLACKLIST = [
@@ -16,7 +17,7 @@ BLACKLIST = [
]
-def main(argv: Optional[Sequence[str]] = None) -> int:
+def main(argv: Sequence[str] | None = None) -> int:
parser = argparse.ArgumentParser()
parser.add_argument('filenames', nargs='*', help='Filenames to check')
args = parser.parse_args(argv)