fix __init__.py

This commit is contained in:
Fredrick W. Warren 2026-04-17 19:31:03 -04:00
parent 679ce285b4
commit 1da8287a9d

View File

@ -5,7 +5,8 @@ in python. It is a wrapper around the functions from wmgeneral.c.
To get help about a contained package, try: To get help about a contained package, try:
help(pywmdockapps.<name>) help(pywmdockapps.<name>)
""" """
from .pywmgeneral import * from .pywmhelpers import * from .pywmgeneral import *
from .pywmhelpers import *
# __all__ controls what 'from pywmdockapps import *' pulls in. # __all__ controls what 'from pywmdockapps import *' pulls in.
# If you want users to see 'pywmgeneral' and 'pywmhelpers' too, add them here. # If you want users to see 'pywmgeneral' and 'pywmhelpers' too, add them here.