Austin

Results 2 issues of Austin

The codeblock imported `pathlib.Path` but it was unused, so the operation for `app.root_path / "blog.db"` would error since `app.root_path` is defined as a string. - fixes #347 Checklist: - [x]...

The blog tutorial has a section that imports `pathlib.Path` but doesn't use it, causing the lines where the path to the db and schema files fail. ```python from pathlib import...