(rule_location)
| 49 | return str(rule_alias) |
| 50 | |
| 51 | def format_rule_location(rule_location): |
| 52 | if isinstance(rule_location, PfSenseRuleAlias): |
| 53 | rule_location = format_rule_alias(rule_location.data) |
| 54 | return str(rule_location) |
| 55 | |
| 56 | def format_bbcode_cell(cell): |
| 57 | if cell is None or (isinstance(cell, PfSenseNode) and cell.data is None): |
no test coverage detected