This commit is contained in:
Ashita Prasad
2023-08-30 01:29:06 +05:30
parent 3a0f341f08
commit ac069efc18
4 changed files with 8 additions and 9 deletions

View File

@ -234,7 +234,7 @@ enum CodegenLanguage {
dartHttp("Dart (http)", "dart", "dart"),
kotlinOkHttp("Kotlin (okhttp3)", "java", "kt"),
pythonHttpClient("Python (http.client)", "python", "py"),
pythonRequests("Python (requests)");
pythonRequests("Python (requests)", "python", "py");
const CodegenLanguage(this.label, this.codeHighlightLang, this.ext);
final String label;