Unused import in fs.py #29
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Unused import in fs.py
Priority: Very Low
Component: fs.py
Type: Code Quality
Description
The
globmodule is imported but only used in one function, and could be replaced with built-in functionality.Location
curateipsum/fs.py:6Current Code
Problem
Minor code quality issue - importing module at top level for single use.
Proposed Solution
Replace with
os.listdir():Or keep import if preferred, but note it in a comment.
Impact
Very Low - Minor code cleanliness issue.