Skip to content

Commit d15dc45

Browse files
committed
Changed the return statement from store_file_content function
1 parent 93b05ff commit d15dc45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

file-operations/file_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ def get_file_content(file):
1313
def store_file_content(content, file='new_file.txt'):
1414
with open(file, 'w') as f:
1515
f.write(content)
16-
return f'content stored on {file}'
16+
return file

0 commit comments

Comments
 (0)