The key to store the stack of applied transforms.
(key: Hashable = None)
| 105 | |
| 106 | @staticmethod |
| 107 | def trace_key(key: Hashable = None): |
| 108 | """The key to store the stack of applied transforms.""" |
| 109 | if key is None: |
| 110 | return f"{TraceKeys.KEY_SUFFIX}" |
| 111 | return f"{key}{TraceKeys.KEY_SUFFIX}" |
| 112 | |
| 113 | @staticmethod |
| 114 | def transform_info_keys(): |
no outgoing calls