Remix.run Logo
echoangle 19 hours ago

The value in the collection could be the actual value None, that’s different from the collection not having the key.

eesmith 18 hours ago | parent | next [-]

    missing = object()
    data = collection.get("key", missing)
    if data is missing:
         ...
    else:
         ....
IshKebab 17 hours ago | parent | prev [-]

That's why I said "normally".