#!/usr/bin/env python

import sys

from codestyle import Application

app = Application()
is_success = app.run()
if not is_success:
    sys.exit(1)
