File: __init__.py

package info (click to toggle)
python-setoptconf 0.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 252 kB
  • sloc: python: 1,427; sh: 7; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

# pylint: disable=W0401

from .base import *
from .commandline import *
from .configfile import *
from .environment import *
from .filebased import *
from .jsonfile import *
from .mapping import *
from .modobj import *

try:
    import yaml
except ImportError:  # pragma: no cover
    pass
else:
    del yaml
    from .yamlfile import *