We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please indicate the following details about the environment in which you found the bug:
When calling metadata.visualize() with a path specified an AttributeError is thrown.
metadata.visualize()
path
AttributeError
from sdv import load_demo metadata, tables = load_demo(metadata=True) metadata.visualize("./test.png")
This occurs due to calling graphviz.backend.FORMATS instead of graphviz.FORMATS in Line 16 in visualization.py
graphviz.backend.FORMATS
graphviz.FORMATS
As described in xflr6/graphviz#149 .backend should not be used.
.backend
change if graphviz_extension not in graphviz.backend.FORMATS:
if graphviz_extension not in graphviz.backend.FORMATS:
to if graphviz_extension not in graphviz.FORMATS:
if graphviz_extension not in graphviz.FORMATS:
The text was updated successfully, but these errors were encountered:
xamm
Successfully merging a pull request may close this issue.
Environment Details
Please indicate the following details about the environment in which you found the bug:
Error Description
When calling
metadata.visualize()
with apath
specified anAttributeError
is thrown.Steps to reproduce
Analysis
This occurs due to calling
graphviz.backend.FORMATS
instead ofgraphviz.FORMATS
in Line 16 in visualization.pyAs described in xflr6/graphviz#149
.backend
should not be used.Fix
change
if graphviz_extension not in graphviz.backend.FORMATS:
to
if graphviz_extension not in graphviz.FORMATS:
The text was updated successfully, but these errors were encountered: