mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
15 lines
237 B
Python
15 lines
237 B
Python
"""Matplotlib xontribution."""
|
|
|
|
from xonsh.proc import foreground as foreground
|
|
|
|
__all__ = ()
|
|
|
|
|
|
@foreground
|
|
def mpl(args, stdin=None):
|
|
"""Hooks to matplotlib"""
|
|
from xontrib.mplhooks import show
|
|
show()
|
|
|
|
|
|
aliases['mpl'] = mpl
|