We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ea3b8e + bec1350 commit f13b8f5Copy full SHA for f13b8f5
src/apispec_plugins/base/types.py
@@ -1,3 +1,5 @@
1
+from __future__ import annotations
2
+
3
from dataclasses import dataclass
4
5
@@ -19,16 +21,16 @@ class BasicAuth:
19
21
@dataclass
20
22
class HTTPResponse:
23
code: int
- description: str
24
+ description: str | None
25
26
27
28
class Server:
29
url: str
30
31
32
33
34
class Tag:
35
name: str
36
0 commit comments