Return a python safe identifier, for use in rule identifiers
(self)
| 2280 | |
| 2281 | @property |
| 2282 | def pysafe_expression(self): |
| 2283 | """ |
| 2284 | Return a python safe identifier, for use in rule identifiers""" |
| 2285 | return python_safe_name(self.license_expression) |
| 2286 | |
| 2287 | def load_data(self, rule_file): |
| 2288 | """ |
nothing calls this directly
no test coverage detected