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
grapher
stats
Error TypeError: 'builtin_function_or_method' object is not iterable is happening when one try to compute cyclicity of graph:
TypeError: 'builtin_function_or_method' object is not iterable
│ ❱ 84 │ stats["Is graph acyclic"] = all([len(set([x for x, _ in path_datas["path"]])) == len │ │ 85 │ │ path_datas["path"]) for path_datas in graph.paths.values]) │
Needs some default value and error handling if no paths is provided.
The text was updated successfully, but these errors were encountered:
🐛 Fix issue #19, #20 with changes in main and grapher
main
217053c
Merge pull request #21 from Tharos-ux/main
e31bdd7
🐛 Fix issue #19, #20 with changes in `main` and `grapher`
This computation is now made within a try/except.
Sorry, something went wrong.
dubssieg
No branches or pull requests
Error
TypeError: 'builtin_function_or_method' object is not iterable
is happening when one try to compute cyclicity of graph:│ ❱ 84 │ stats["Is graph acyclic"] = all([len(set([x for x, _ in path_datas["path"]])) == len │
│ 85 │ │ path_datas["path"]) for path_datas in graph.paths.values]) │
Needs some default value and error handling if no paths is provided.
The text was updated successfully, but these errors were encountered: