dotexport.py 457 B

123456789101112131415
  1. import warnings
  2. from anytree.exporter.dotexporter import DotExporter
  3. class RenderTreeGraph(DotExporter):
  4. def __init__(self, *args, **kwargs):
  5. """Legacy. Use :any:`anytree.exporter.DotExporter` instead."""
  6. warnings.warn(
  7. ("anytree.RenderTreeGraph has moved. "
  8. "Use anytree.exporter.DotExporter instead"),
  9. DeprecationWarning
  10. )
  11. super(RenderTreeGraph, self).__init__(*args, **kwargs)