mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-12-29 03:01:03 +01:00
add context to unwrap
This commit is contained in:
@@ -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 =
|
||||||
|
|||||||
Reference in New Issue
Block a user