Skip to content
New issue

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

Leading whitespace in dot graph import breaks with strict #449

Open
shaolo1 opened this issue Mar 1, 2023 · 0 comments
Open

Leading whitespace in dot graph import breaks with strict #449

shaolo1 opened this issue Mar 1, 2023 · 0 comments

Comments

@shaolo1
Copy link

shaolo1 commented Mar 1, 2023


# This works
def test1():
    dot = '''strict digraph G {
        a -> b
}'''
    graph = AGraph(dot)

# This gives a file not found error
def test2():
    dot = '''
strict digraph G {
    a -> b
}'''
    graph = AGraph(dot)

agraph.py 141 should be
pattern = re.compile(r"(\s*strict)?\s*(graph|digraph).*{.*}\s*", re.DOTALL)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant