Contents:
digraph InheritanceGraph { graph [bgcolor=transparent, color=lightsteelblue2, fontname=Arial, fontsize=10, outputorder=edgesfirst, overlap=prism, penwidth=2, rankdir=LR, splines=spline, style="dashed, rounded", truecolor=true]; node [colorscheme=pastel19, fontname=Arial, fontsize=10, height=0, penwidth=2, shape=box, style="filled, rounded", width=0]; edge [color=lightslategrey, penwidth=1]; subgraph cluster_builtins { graph [label=builtins]; node [color=1]; "builtins.object" [URL="https://docs.python.org/3.9/library/functions.html#object", label=object, target=_top]; } subgraph "cluster_pang.commands" { graph [label="pang.commands"]; node [color=2]; "pang.commands.Command" [URL="../api/pang/commands.html#pang.commands.Command", color=black, fontcolor=white, label=Command, target=_top]; "pang.commands.QuantizeSequenceCommand" [URL="../api/pang/commands.html#pang.commands.QuantizeSequenceCommand", color=black, fontcolor=white, label="Quantize\nSequence\nCommand", target=_top]; "pang.commands.Command" -> "pang.commands.QuantizeSequenceCommand"; } "builtins.object" -> "pang.commands.Command"; }
Classes
Command
Base command class.
QuantizeSequenceCommand
Quantize Sequence Command.
pang.commands.
Base command class. To be called by SegmentMaker.
Attributes Summary
__call__
Call self as a function.
Special methods