only require into Packet for sendable data

This commit is contained in:
Annika Hannig 2024-05-23 20:56:46 +02:00
parent 0bc13fee81
commit e9dc4b59d2
No known key found for this signature in database
GPG key ID: 62E226E47DDCE58D
6 changed files with 11 additions and 11 deletions

View file

@ -21,7 +21,7 @@ fn main() {
let connection = Connection::open(&cli.destination).unwrap();
if cli.clear {
connection.send(Command::Clear.into()).unwrap();
connection.send(Command::Clear).unwrap();
}
let max_width = cli.text.iter().map(|t| t.len()).max().unwrap();
@ -37,6 +37,6 @@ fn main() {
}
connection
.send(Command::Cp437Data(Origin(0, 0), chars).into())
.send(Command::Cp437Data(Origin(0, 0), chars))
.unwrap();
}