From 16426b1e7e773953148254763e1d26b3d279b10b Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Sat, 6 Sep 2025 18:15:25 +0200 Subject: [PATCH] Update `__all__` to include `vfsopen` and `vfspath` --- pathlib_abc/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pathlib_abc/__init__.py b/pathlib_abc/__init__.py index d5a6cf5..0a12809 100644 --- a/pathlib_abc/__init__.py +++ b/pathlib_abc/__init__.py @@ -23,7 +23,7 @@ def text_encoding(encoding): return encoding -__all__ = ['PathParser', 'PathInfo', 'JoinablePath', 'ReadablePath', 'WritablePath', 'magic_open'] +__all__ = ['PathParser', 'PathInfo', 'JoinablePath', 'ReadablePath', 'WritablePath', 'vfsopen', 'vfspath'] def _explode_path(path, split):