We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hands_on/bug_hunt/file_datastore.py
The FileDatastore is initialized using a base_path, and then it should be able to read/write files in it, given a path relative to the base path.
base_path
The current code works correctly when base_path is an absolute path but not when it's a relative path!
Go to hands_on/bug_hunt and run file_datastore.py to reproduce the bug. Use the debugger to find the bug the fix it.
hands_on/bug_hunt
file_datastore.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The FileDatastore is initialized using a
base_path
, and then it should be able to read/write files in it, given a path relative to the base path.The current code works correctly when
base_path
is an absolute path but not when it's a relative path!Go to
hands_on/bug_hunt
and runfile_datastore.py
to reproduce the bug. Use the debugger to find the bug the fix it.The text was updated successfully, but these errors were encountered: