From 2e38ce5d7ed844f33f598a732fe17bf7b5b4f787 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 18 Oct 2022 11:03:46 -0700 Subject: [PATCH] Reference local files in wordle example. --- examples/wordle/wordle.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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?', ) -- 2.46.0