efficient vim config
[dotfiles/.git] / .local / lib / python3.9 / site-packages / pywal / __init__.py
1 """
2                                       '||
3 ... ...  .... ... ... ... ...  ....    ||
4  ||'  ||  '|.  |   ||  ||  |  '' .||   ||
5  ||    |   '|.|     ||| |||   .|' ||   ||
6  ||...'     '|       |   |    '|..'|' .||.
7  ||      .. |
8 ''''      ''
9 Created by Dylan Araps.
10 """
11
12 from .settings import __version__, __cache_version__
13 from . import colors
14 from . import export
15 from . import image
16 from . import reload
17 from . import sequences
18 from . import theme
19 from . import wallpaper
20
21 __all__ = [
22     "__version__",
23     "__cache_version__",
24     "colors",
25     "export",
26     "image",
27     "reload",
28     "sequences",
29     "theme",
30     "wallpaper",
31 ]