Skip to content

Commit 9488823

Browse files
fixup: lint
1 parent d2eb920 commit 9488823

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/components/button/button.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ import type { Resource } from '../../types';
55
export interface Button extends Resource {
66
/** Press the button. */
77
press: (extra?: Struct) => Promise<void>;
8-
}
8+
}

src/components/button/client.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import { Struct, type JsonValue } from '@bufbuild/protobuf';
22
import type { CallOptions, PromiseClient } from '@connectrpc/connect';
33
import { ButtonService } from '../../gen/component/button/v1/button_connect';
4-
import {
5-
PushRequest,
6-
} from '../../gen/component/button/v1/button_pb';
4+
import { PushRequest } from '../../gen/component/button/v1/button_pb';
75
import type { RobotClient } from '../../robot';
86
import type { Options } from '../../types';
97
import { doCommandFromClient } from '../../utils';
@@ -49,4 +47,4 @@ export class ButtonClient implements Button {
4947
callOptions
5048
);
5149
}
52-
}
50+
}

0 commit comments

Comments
 (0)