Remove unused password variables from main function for OAuth2 integration

This commit is contained in:
Javier Callico 2026-01-31 17:22:32 -05:00 committed by Nathan Moinvaziri
parent 6ff0d336d9
commit 5f7ec8994e

View File

@ -253,10 +253,8 @@ def main():
SRC_HOST = args.src_host
SRC_USER = args.src_user
SRC_PASS = args.src_pass
DEST_HOST = args.dest_host
DEST_USER = args.dest_user
DEST_PASS = args.dest_pass
src_use_oauth2 = bool(args.src_client_id) and not src_is_local
dest_use_oauth2 = bool(args.dest_client_id) and not dest_is_local