Return the name that a converter for an attribute name *attr_name* would have.
(attr_name: str)
| 3141 | |
| 3142 | @staticmethod |
| 3143 | def _get_global_name(attr_name: str) -> str: |
| 3144 | """ |
| 3145 | Return the name that a converter for an attribute name *attr_name* |
| 3146 | would have. |
| 3147 | """ |
| 3148 | return f"__attr_converter_{attr_name}" |
| 3149 | |
| 3150 | def _fmt_converter_call(self, attr_name: str, value_var: str) -> str: |
| 3151 | """ |
no outgoing calls
no test coverage detected