We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bde8b5e commit ed99c7dCopy full SHA for ed99c7d
2 files changed
src/api/builder.ts
@@ -264,6 +264,7 @@ export class APIBuilder {
264
265
const defaultPyOpts: PythonGeneratorOptions = {
266
...defaultWriterOpts,
267
+ // FIXME: change name
268
packageName: "generated",
269
};
270
src/api/writer-generator/writer.ts
@@ -197,6 +197,7 @@ export abstract class Writer<T extends WriterOptions = WriterOptions> extends Fi
197
this.line(`]${endTokens?.filter(Boolean).join(" ") ?? ""}`);
198
}
199
200
+ // FIXME: python specific
201
buildImportLine(remaining: string[], maxImportLineLength: number): string {
202
let line = "";
203
0 commit comments