in src/exporters/python.ts [44:52]
async convert(
requests: ParsedRequest[],
options: ConvertOptions,
): Promise<string> {
if (!(await this.check(requests))) {
throw new Error("Cannot perform conversion");
}
return (await this.getTemplate())({ requests, ...options });
}