-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[py] Fix type annotation error and raise clearer error message #16174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: trunk
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -173,7 +173,10 @@ def check_response(self, response: dict[str, Any]) -> None: | |
message = value.get("value") or value.get("message") | ||
if not isinstance(message, str): | ||
value = message | ||
message = message.get("message") | ||
if isinstance(message, dict): | ||
message = message.get("message") | ||
else: | ||
message = None | ||
Comment on lines
+176
to
+179
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can replace with a better and shorter check: message = message.get("message") if message is not None else None There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great suggestion! I’ll update this to use the shorter one-liner as you proposed. It’s definitely more concise and readable. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Those aren't equivalent. You would want:
|
||
else: | ||
message = value.get("message", None) | ||
except ValueError: | ||
|
@@ -202,7 +205,9 @@ def check_response(self, response: dict[str, Any]) -> None: | |
screen = value["screen"] | ||
|
||
stacktrace = None | ||
st_value = value.get("stackTrace") or value.get("stacktrace") | ||
st_value = None | ||
if isinstance(value, dict): | ||
st_value = value.get("stackTrace") or value.get("stacktrace") | ||
Comment on lines
+208
to
+210
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This instance check is not required since we are taking care of it below. It won't raise any mypy type errors. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I’ll remove the redundant isinstance check here since the code already ensures the right type, and it shouldn’t affect mypy or runtime behavior. |
||
if st_value: | ||
if isinstance(st_value, str): | ||
stacktrace = st_value.split("\n") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we directly use
data["rpId"]
instead of raising an error since it is a required field and is expected to be always present?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the suggestion! I added the explicit check to provide a clearer error message if rpId is missing, but I agree that directly accessing data["rpId"] would automatically raise a KeyError if it’s absent. I’m happy to update this to remove the manual check and rely on the built-in exception for missing keys, if that’s preferred for consistency with the rest of the codebase.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure