Skip to content

Commit

Permalink
style: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ayuhito committed Dec 5, 2023
1 parent 184f3af commit 813709c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axis-gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const parseProto = (textproto: string): AxisDecode => {

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

const result = {
Expand Down

0 comments on commit 813709c

Please sign in to comment.