a93a0c8fd6
* Relocate module validator code and tests. * Fix validate-modules entry point and imports. * Fix paths and test entry points. * Fix up unit tests. * Fix shebang and execute bit.
8 lines
189 B
Python
Executable file
8 lines
189 B
Python
Executable file
#!/usr/bin/env python
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
from validate_modules.main import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|