From 7c35fe630aec52f44df7e85c1b5d38e5381afc08 Mon Sep 17 00:00:00 2001 From: lucasew Date: Sun, 27 Aug 2023 16:54:41 -0300 Subject: [PATCH] add __all__ Signed-off-by: lucasew --- libdecsync/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libdecsync/__init__.py b/libdecsync/__init__.py index fa2d14d..5b68209 100644 --- a/libdecsync/__init__.py +++ b/libdecsync/__init__.py @@ -26,6 +26,8 @@ import platform import sys +__all__ = ["DecsyncException", "DecSync"] + class DecsyncException(Exception): pass