Remove unused code from balena note

Change-type: patch
Signed-off-by: Scott Lowe <scott@balena.io>
This commit is contained in:
Scott Lowe 2020-03-31 10:10:11 +02:00
parent cbe12d5be7
commit 9aa6b0bc57
2 changed files with 0 additions and 10 deletions

View File

@ -1284,10 +1284,6 @@ device UUID
#### --stdin
# OS
## os versions &#60;type&#62;

View File

@ -26,7 +26,6 @@ import { getBalenaSdk } from '../utils/lazy';
interface FlagsDef {
device?: string; // device UUID
dev?: string; // Alias for device.
stdin: boolean;
help: void;
}
@ -51,7 +50,6 @@ export default class NoteCmd extends Command {
public static args = [
{
name: 'note',
// required: true,
description: 'note content',
},
];
@ -64,10 +62,6 @@ export default class NoteCmd extends Command {
exclusive: ['device'],
hidden: true,
}),
// Hack to read stdin with oclif
stdin: flags.boolean({
hidden: true,
}),
help: cf.help,
};