(x)
| 154 | ).hexdigest() |
| 155 | |
| 156 | def _concat(x): |
| 157 | nonlocal hashed_inputs |
| 158 | _id = x.component_id_str().replace(".", "\\.") + "." + x.component_property |
| 159 | if x.allow_duplicate: |
| 160 | if not hashed_inputs: |
| 161 | hashed_inputs = _hash_inputs() |
| 162 | # Actually adds on the property part. |
| 163 | _id += f"@{hashed_inputs}" |
| 164 | return _id |
| 165 | |
| 166 | if no_output: |
| 167 | # No output will hash the inputs. |
no test coverage detected
searching dependent graphs…