diff --git a/docs/customizations.md b/docs/customizations.md index a15cac55e4..af0634e91b 100644 --- a/docs/customizations.md +++ b/docs/customizations.md @@ -247,12 +247,10 @@ class ServiceClient(ServiceClientGenerated): __all__ = ["ServiceClient"] ``` -## Postprocessing +## Postprocessing (Optional) -All of the code, linting, and intellisense between generated and handwritten code should work immediately. In some cases, to get mypy clean, you will need to run our postprocessing step. To run this step, run +All of the code, linting, and intellisense between generated and handwritten code should work immediately. In some cases, to correctly point mypy to the patched code, you will need to run our postprocessing step. To run this step, run ```bash -autorest --postprocess --output-folder= +autorest --python --postprocess --output-folder= ``` - -This will update the generated SDK to pass mypy.