(self, proto)
| 329 | return looked_up |
| 330 | |
| 331 | def _recreate_base_user_object(self, proto): |
| 332 | del proto |
| 333 | # Note: each user object has its own class. This allows to make each one |
| 334 | # individually callable by adding a `__call__` method to the classes of |
| 335 | # the objects instances that have a `__call__` property. |
| 336 | |
| 337 | class _UserObject(tracking.AutoTrackable): |
| 338 | pass |
| 339 | |
| 340 | return _UserObject(), setattr |
| 341 | |
| 342 | def _recreate_asset(self, proto): |
| 343 | filename = os.path.join( |
no test coverage detected