#!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'thefuck==3.2','console_scripts','thefuck-alias'
__requires__ = 'thefuck==3.2'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('thefuck==3.2', 'console_scripts', 'thefuck-alias')()
    )
