Reference local files in wordle example.
authorScott Gasch <[email protected]>
Tue, 18 Oct 2022 18:03:46 +0000 (11:03 -0700)
committerScott Gasch <[email protected]>
Tue, 18 Oct 2022 18:03:46 +0000 (11:03 -0700)
examples/wordle/wordle.py

index e5b6c6f7cb0f5be899a881face9a3d32a7ed8024..df9874ee0b309e7a70a5a7c8900629869def3928 100755 (executable)
@@ -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?',
 )