Message
Message module for autopylot. This module contains functions for displaying messages to the user.
Examples:
>>> from autopylot import message
>>> message.info(message='Hello World!')
>>> message.error(message='Hello World!')
>>> message.warning(message='Hello World!')
The module contains the following functions:
info(message, title)
: Display an info message to the user.error(message, title)
: Display an error message to the user.warning(message, title)
: Display a warning message to the user.