From 4a947f085614243856c8dc49c6c6a6568276c988 Mon Sep 17 00:00:00 2001 From: bzoracler <50305397+bzoracler@users.noreply.github.com> Date: Tue, 24 Dec 2024 05:21:52 +1300 Subject: [PATCH] fix: Properly spell `__all__` (#39) --- src/watchpoints/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/watchpoints/__init__.py b/src/watchpoints/__init__.py index 35747e0..335bde4 100644 --- a/src/watchpoints/__init__.py +++ b/src/watchpoints/__init__.py @@ -8,7 +8,7 @@ __version__ = "0.2.5" -all = [ +__all__ = [ "watch", "unwatch" ]