Default allow_missing_credentials flag to True

This commit is contained in:
droctothorpe 2022-03-23 15:41:59 -04:00
parent c1c8b0a543
commit 512e71dd1a

View file

@ -107,6 +107,7 @@ def main(argv: Sequence[str] | None = None) -> int:
parser.add_argument(
'--allow-missing-credentials',
dest='allow_missing_credentials',
default=True,
action='store_true',
help='Allow hook to pass when no credentials are detected.',
)