Skip to content

Commit 037f203

Browse files
committed
refactor: remove skip_user_input local var, use args.yes directly
1 parent 97a646c commit 037f203

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

diffyscan/diffyscan.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,6 @@ def main() -> None:
701701
"""Main entry point for the diffyscan application."""
702702
load_dotenv()
703703
args = parse_arguments()
704-
skip_user_input = args.yes
705704
if args.quiet:
706705
logger.set_level("okay")
707706
else:
@@ -757,7 +756,7 @@ def main() -> None:
757756
enable_binary_comparison,
758757
args.cache_explorer,
759758
args.cache_github,
760-
skip_user_input,
759+
args.yes,
761760
args.contract_filter,
762761
args.local_rpc,
763762
)

0 commit comments

Comments
 (0)