chore: fix fmt

This commit is contained in:
rvcas
2024-03-07 19:32:33 -05:00
parent 8e558d893f
commit fab6d5aff7
2 changed files with 9 additions and 15 deletions

View File

@@ -833,12 +833,10 @@ impl TypeVar {
Self::Link { tipo } => tipo.get_inner_types(),
Self::Unbound { .. } => vec![],
var => {
vec![
Type::Var {
tipo: RefCell::new(var.clone()).into(),
}
.into(),
]
vec![Type::Var {
tipo: RefCell::new(var.clone()).into(),
}
.into()]
}
}
}