Lazy wrapper — see :func:bathy.draw.draw_profile.
Source code in src/bathy/__init__.py
| def draw_profile(*args, **kwargs):
"""Lazy wrapper — see :func:`bathy.draw.draw_profile`."""
from bathy.draw import draw_profile as _draw_profile
return _draw_profile(*args, **kwargs)
|