Return true if the argument is a special symbol for all nodes or edges.
(arg)
| 25 | |
| 26 | |
| 27 | def is_all(arg): |
| 28 | """Return true if the argument is a special symbol for all nodes or edges.""" |
| 29 | return isinstance(arg, str) and arg == ALL |
| 30 | |
| 31 | |
| 32 | # pylint: disable=invalid-name |
no outgoing calls
no test coverage detected