Source code for limix_plot._show
[docs]def show():
import matplotlib as mpl
if mpl.get_backend().lower() == "agg":
return None
from ._plt import get_pyplot
return get_pyplot().show()
[docs]def show():
import matplotlib as mpl
if mpl.get_backend().lower() == "agg":
return None
from ._plt import get_pyplot
return get_pyplot().show()