swh:1:snp:b37d435721bbd450624165f334724e3585346499
Raw File
Tip revision: ffd8b73499f6099fb269344d81208743d1b9f54c authored by Hallvord R. M. Steen on 25 February 2016, 15:23:24 UTC
Reordering asserts to make failures easier to debug
Tip revision: ffd8b73
lint
#!/usr/bin/env python
import sys

from tools.lint import lint

sys.exit(0 if lint.main() == 0 else 1)
back to top