revisit 0.0.20__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
revisit/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ # Import main functions from core.py
2
+ from . import revisit
3
+
4
+ # Import all symbols
5
+ from .revisit import *
6
+
7
+
8
+ # Import the Widget class from widget.py
9
+ from .widget import Widget
10
+
11
+ # Expose them in the package's namespace
12
+ __all__ = [*revisit.__all__, "Widget"]