mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
Remove list<any> -> list<any> (#11137)
this should - close https://github.com/nushell/nushell/issues/11134 # Description this is band-aid... but it should address the issue in https://github.com/nushell/nushell/issues/11134 until we have a better long-term fix for this i/o types bug 😇 # User-Facing Changes the following will now parse and run fine ```nushell def get-initial-commit []: nothing -> string { ^git rev-list HEAD | lines | last } ``` # Tests + Formatting # After Submitting
This commit is contained in:
parent
6ea5bdcf47
commit
5c07e82fc0
@ -20,15 +20,6 @@ impl Command for Last {
|
||||
fn signature(&self) -> Signature {
|
||||
Signature::build("last")
|
||||
.input_output_types(vec![
|
||||
(
|
||||
// TODO: This variant duplicates the functionality of
|
||||
// `take`. See #6611, #6611, #6893
|
||||
// TODO: This is too permissive; if we could express this
|
||||
// using a type parameter style it would be List<T> ->
|
||||
// List<T>.
|
||||
Type::List(Box::new(Type::Any)),
|
||||
Type::List(Box::new(Type::Any)),
|
||||
),
|
||||
(
|
||||
// TODO: This is too permissive; if we could express this
|
||||
// using a type parameter it would be List<T> -> T.
|
||||
|
Loading…
Reference in New Issue
Block a user