diff options
author | Damien George <damien@micropython.org> | 2025-04-24 12:21:27 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-04-24 22:06:11 +1000 |
commit | 898c04ae0e24ca523a630eecc9ac4b4787e55a7e (patch) | |
tree | 50c9272a2b93bfefdd7c05192ef430034a0df526 /tests | |
parent | a081b2e151565550508ac782ef15db8e9d2a7eff (diff) | |
download | micropython-898c04ae0e24ca523a630eecc9ac4b4787e55a7e.tar.gz micropython-898c04ae0e24ca523a630eecc9ac4b4787e55a7e.zip |
tests/extmod/vfs_mountinfo.py: Don't import unused errno module.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/extmod/vfs_mountinfo.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/extmod/vfs_mountinfo.py b/tests/extmod/vfs_mountinfo.py index f674e80763..b31dc60ce7 100644 --- a/tests/extmod/vfs_mountinfo.py +++ b/tests/extmod/vfs_mountinfo.py @@ -5,7 +5,6 @@ try: except ImportError: print("SKIP") raise SystemExit -import errno class Filesystem: |