File: __init__.py

package info (click to toggle)
python-panwid 0.3.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 408 kB
  • sloc: python: 4,904; makefile: 3
file content (35 lines) | stat: -rw-r--r-- 754 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from . import autocomplete
from .autocomplete import *
from . import datatable
from .datatable import *
from . import dialog
from .dialog import *
from . import dropdown
from .dropdown import *
from . import highlightable
from .highlightable import *
from . import keymap
from .keymap import *
from . import listbox
from .listbox import *
from . import scroll
from .scroll import *
from . import sparkwidgets
from .sparkwidgets import *
from . import tabview
from .tabview import *

__version__ = "0.3.5"

__all__ = (
    autocomplete.__all__
    + datatable.__all__
    + dialog.__all__
    + dropdown.__all__
    + highlightable.__all__
    + keymap.__all__
    + listbox.__all__
    + scroll.__all__
    + sparkwidgets.__all__
    + tabview.__all__
)