def print_error()

in remote_settings/format.py [0:0]


def print_error(*args, **kwargs):
    """Prints a message to stderr with the prefix 'Error:'"""
    print(ERROR, end=" ", file=sys.stderr)
    print(*args, file=sys.stderr, **kwargs)