Output a description prefixed by a category symbol.
(self)
| 110 | return "%s: %s" % (self.__class__.__name__, self._constructor_args) |
| 111 | |
| 112 | def formatted_description(self): |
| 113 | """Output a description prefixed by a category symbol.""" |
| 114 | description = self.describe() |
| 115 | if self.category is None: |
| 116 | return f"{OperationCategory.MIXED} {description}" |
| 117 | return f"{self.category} {description}" |
| 118 | |
| 119 | @property |
| 120 | def migration_name_fragment(self): |