frenos/imgload

View on GitHub
imgload/img_hosts/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
import glob
from os.path import dirname, basename, isfile

modules = glob.glob(dirname(__file__) + "/*.py")
__all__ = [basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]