Cleanup: remove no-longer-referenced get_known_folder_path, UserDirs class #227
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
While looking at a similar build failure to the one mentioned in #218, I noticed that the
UserDirs
class (XDG-related functionality) where a translation-retrieval exception occurred may be part of an unused section of code.As far as I can tell, the
UserDirs
class is only referenced by theget_known_folder_path
method, which is imported -- but not invoked -- byworker.py
.I ran most tests for this locally, although I had some difficulty getting some of the tests to run in a containerized environment (so I'm leaning on continuous integration a bit, here).
(note for maintainers: this changeset currently applies cleanly to the
develop
branch, if that's a better place to direct this change)