We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 184f3af commit 813709cCopy full SHA for 813709c
src/axis-gen.ts
@@ -111,7 +111,7 @@ export const parseProto = (textproto: string): AxisDecode => {
111
112
// Download the textproto file and parse it
113
const downloadAxis = async (axis: AxisProto): Promise<AxisObject> => {
114
- const response = await got(axis.download_url).text() as unknown as string;
+ const response = (await got(axis.download_url).text()) as unknown as string;
115
const data = parseProto(response.trim());
116
117
const result = {
0 commit comments