#!/usr/bin/env python3

import os
import sys


if __name__ == '__main__':
    print('The command sq is not setup yet.', file=sys.stderr)
    print('Please type "source /usr/local/etc/profile.d/sq.sh" to setup the sq command.', file=sys.stderr)
    exit(1)
