From f4c3d694308f9eb2266e0d4e100382cc33331f2d Mon Sep 17 00:00:00 2001 From: Mopsan Date: Fri, 9 Oct 2020 10:26:28 +0300 Subject: [PATCH] Update docs/api-guide/schemas.md Co-authored-by: Adam Johnson --- docs/api-guide/schemas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/schemas.md b/docs/api-guide/schemas.md index f9466285a..b4832b369 100644 --- a/docs/api-guide/schemas.md +++ b/docs/api-guide/schemas.md @@ -182,7 +182,7 @@ dictionary For example you might wish to add terms of service to the [top-level ``` class TOSSchemaGenerator(SchemaGenerator): def get_schema(self, *args, **kwargs): - schema = super().get_schema() + schema = super().get_schema(*args, **kwargs) schema["info"]["termsOfService"] = "https://example.com/tos.html" return schema ```