diff --git a/Chapter_10/10-14_verify_user.py b/Chapter_10/10-14_verify_user.py index 84b06eb..3b07d5d 100644 --- a/Chapter_10/10-14_verify_user.py +++ b/Chapter_10/10-14_verify_user.py @@ -38,7 +38,7 @@ def verify_user(information): def greet_user(): """Greet the user by name.""" - path = Path('user_info.json') + path = Path('../Chapter_10/user_info.json') information = get_stored_info(path) if information: confirmed = verify_user(information) diff --git a/Chapter_10/user_info.json b/Chapter_10/user_info.json index d6fdd14..41b7ea0 100644 --- a/Chapter_10/user_info.json +++ b/Chapter_10/user_info.json @@ -1 +1 @@ -{"username": "Ken", "location": "PA", "age": "66"} \ No newline at end of file +{"username": "Gerry", "location": "WY", "age": "82"} \ No newline at end of file