#!/usr/bin/env python

import sys

from codestyle import Application, settings

app = Application(settings)
if app.run() is False:
    sys.exit(1)
