Source code for hyspecppt.help.help_model

"""single help module"""

import webbrowser

from hyspecppt.configuration import get_data


[docs] def help_function(context): """Open a browser with the appropriate help page""" help_url = get_data("global.other", "help_url") if context: webbrowser.open(help_url)