Skip to content

Commit aaaaaa6

Browse files
committed
- Removed async prefix for operation ids
1 parent 6caec60 commit aaaaaa6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
raise SystemExit(dedent(message)) from None
2323

2424
package = "openapi_python_generator"
25-
python_versions = ["3.8"]
25+
python_versions = ["3.9"]
2626
nox.needs_version = ">= 2021.6.6"
2727
nox.options.sessions = (
2828
"pre-commit",

src/openapi_python_generator/language_converters/python/service_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def generate_service_operation(
225225

226226
so = ServiceOperation(
227227
params=params,
228-
operation_id="async_" + operation_id if async_type else operation_id,
228+
operation_id=operation_id,
229229
query_params=query_params,
230230
return_type=return_type,
231231
operation=op,

0 commit comments

Comments
 (0)