Skip to content

Commit 813709c

Browse files
committed
style: run prettier
1 parent 184f3af commit 813709c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/axis-gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const parseProto = (textproto: string): AxisDecode => {
111111

112112
// Download the textproto file and parse it
113113
const downloadAxis = async (axis: AxisProto): Promise<AxisObject> => {
114-
const response = await got(axis.download_url).text() as unknown as string;
114+
const response = (await got(axis.download_url).text()) as unknown as string;
115115
const data = parseProto(response.trim());
116116

117117
const result = {

0 commit comments

Comments
 (0)