(self, aspect_ratio, **values)
| 16 | CATEGORY = "PDuse/Text" |
| 17 | |
| 18 | def select_value(self, aspect_ratio, **values): |
| 19 | ratio = aspect_ratio.strip() |
| 20 | if ratio not in values: |
| 21 | ratio = "2:3" |
| 22 | value = str(values[ratio]).strip() |
| 23 | return (value, int(float(value))) |
| 24 | |
| 25 | |
| 26 | NODE_CLASS_MAPPINGS = { |
nothing calls this directly
no outgoing calls
no test coverage detected