(arg: AnonymousUser, key: str | None = None)
| 60 | |
| 61 | |
| 62 | def serialize_anonymous_user(arg: AnonymousUser, key: str | None = None) -> dict[str, Any]: |
| 63 | return { |
| 64 | "type": ANONYMOUS_USER_KEY, |
| 65 | "data": {}, |
| 66 | "key": key, |
| 67 | } |
| 68 | |
| 69 | |
| 70 | @cell_silo_function |
no outgoing calls
no test coverage detected