Skip to content

Commit e6d5579

Browse files
Guard for verbose flag (#109)
1 parent a72bf86 commit e6d5579

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/kup/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ def main() -> None:
931931
)
932932

933933
args = parser.parse_args()
934-
if args.verbose:
934+
if 'verbose' in args and args.verbose:
935935
VERBOSE = True
936936

937937
if args.command is None:

0 commit comments

Comments
 (0)