From: Scott Gasch Date: Tue, 18 Oct 2022 18:03:46 +0000 (-0700) Subject: Reference local files in wordle example. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=2e38ce5d7ed844f33f598a732fe17bf7b5b4f787;p=pyutils.git Reference local files in wordle example. --- diff --git a/examples/wordle/wordle.py b/examples/wordle/wordle.py index e5b6c6f..df9874e 100755 --- a/examples/wordle/wordle.py +++ b/examples/wordle/wordle.py @@ -90,19 +90,19 @@ For example: args.add_argument( '--solutions_file', type=str, - default='/home/scott/bin/wordle_solutions.txt', + default='wordle_solutions.txt', help='Where can I find a valid word list for solutions?', ) args.add_argument( '--guesses_file', type=str, - default='/home/scott/bin/wordle_guesses.txt', + default='wordle_guesses.txt', help='Where can I find a valid word list for guesses?', ) args.add_argument( '--hash_file', type=str, - default='/home/scott/bin/wordle_hash.txt', + default='wordle_hash.txt', help='Where can I find my precomputed hash file?', )