From a2ddf05d35380e8d7f7d0fd63bbc8962d24d0fa1 Mon Sep 17 00:00:00 2001 From: Mikkel Schoettner Date: Wed, 7 Sep 2022 11:27:34 +0200 Subject: [PATCH] Fixes to the validation script --- first_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/first_validation.py b/first_validation.py index cfbd543..cda8364 100644 --- a/first_validation.py +++ b/first_validation.py @@ -31,7 +31,7 @@ def hash_for_fname(fname): # Convert a string filename to a Path object. fpath = Path(fname) # Your code here. - return 'not-really-the-hash' + return fpath # Fill in the function above to make the test below pass.