Return the number of element references this symbol requires.
(symbol_name: str)
| 225 | |
| 226 | |
| 227 | def refs_for_symbol(symbol_name: str) -> int: |
| 228 | """Return the number of element references this symbol requires.""" |
| 229 | return SYMBOL_REFS.get(symbol_name, 0) |
| 230 | |
| 231 | |
| 232 | def strip_braces(value: str) -> str: |
no outgoing calls
no test coverage detected