Fix incorrect Graph method

This commit is contained in:
mcrakhman 2023-01-07 12:41:13 +01:00 committed by Mikhail Iudin
parent da4a43d5a0
commit 2edd059846
No known key found for this signature in database
GPG Key ID: FAAAA8BAABDFF1C0

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")
} }