Fix incorrect Graph method

This commit is contained in:
mcrakhman 2023-01-07 12:41:13 +01:00 committed by mcrakhman
parent 62c4e80c36
commit 048406edfd

View File

@ -6,6 +6,6 @@ package objecttree
import "fmt" import "fmt"
func (t *Tree) Graph(parser DescriptionParser) (data []string, err error) { func (t *Tree) Graph(parser DescriptionParser) (data string, err error) {
return "", fmt.Errorf("not supported") return "", fmt.Errorf("not supported")
} }