mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-02-23 08:11:12 +01:00
add context to unwrap
This commit is contained in:
parent
b6caf27854
commit
e0db105cba
@ -1,6 +1,7 @@
|
|||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use dagger_core::introspection::{FullType, InputValue, TypeRef, __TypeKind};
|
use dagger_core::introspection::{FullType, InputValue, TypeRef, __TypeKind};
|
||||||
|
use eyre::ContextCompat;
|
||||||
|
|
||||||
use crate::utility::OptionExt;
|
use crate::utility::OptionExt;
|
||||||
|
|
||||||
@ -87,6 +88,7 @@ impl CommonFunctions {
|
|||||||
.map(|t| t.clone())
|
.map(|t| t.clone())
|
||||||
.map(|t| *t)
|
.map(|t| *t)
|
||||||
.map(|t| self.format_type(&t, input))
|
.map(|t| self.format_type(&t, input))
|
||||||
|
.context("could not get inner type of list")
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
representation =
|
representation =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user