We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eefb1d6 commit 1efbf0fCopy full SHA for 1efbf0f
openapi_core/contrib/falcon/responses.py
@@ -9,6 +9,8 @@ def __init__(self, response: Response):
9
10
@property
11
def data(self) -> str:
12
+ if self.response.text is None:
13
+ return ""
14
assert isinstance(self.response.text, str)
15
return self.response.text
16
0 commit comments