No further refactoring, but some cleanup of imports (which obviously has dangers in itself)
9 lines
130 B
Python
Executable File
9 lines
130 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
from pkglistgen.cli import CommandLineInterface
|
|
|
|
import sys
|
|
|
|
app = CommandLineInterface()
|
|
sys.exit(app.main())
|