Skip to content

Commit 3245c0a

Browse files
authored
minor update to python generator usage (#762)
1 parent 0809d8f commit 3245c0a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public PythonClientCodegen() {
165165
supportedLibraries.put("urllib3", "urllib3-based client");
166166
supportedLibraries.put("asyncio", "Asyncio-based client (python 3.5+)");
167167
supportedLibraries.put("tornado", "tornado-based client");
168-
CliOption libraryOption = new CliOption(CodegenConstants.LIBRARY, "library template (sub-template) to use");
168+
CliOption libraryOption = new CliOption(CodegenConstants.LIBRARY, "library template (sub-template) to use: asyncio, tornado, urllib3");
169169
libraryOption.setDefault(DEFAULT_LIBRARY);
170170
cliOptions.add(libraryOption);
171171
setLibrary(DEFAULT_LIBRARY);

0 commit comments

Comments
 (0)