Ok# class coffea.processor.Ok(value: T)[source]# Bases: Result[T] A successful result containing a value. Attributes Summary value Methods Summary is_ok() unwrap() Return the contained value on Ok; on Err re-raise the captured exception. Attributes Documentation value# Methods Documentation is_ok() → bool[source]# unwrap() → T[source]# Return the contained value on Ok; on Err re-raise the captured exception.