codeant-ai-for-open-source[bot] commented on code in PR #41994:
URL: https://github.com/apache/superset/pull/41994#discussion_r3569060728
##########
superset/models/sql_lab.py:
##########
@@ -483,7 +485,9 @@ class SavedQuery(
__tablename__ = "saved_query"
id = Column(Integer, primary_key=True)
- user_id = Column(Integer, ForeignKey("ab_user.id"), nullable=True)
+ user_id = Column(
+ Integer, ForeignKey("ab_user.id", ondelete="SET NULL"), nullable=True
+ )
Review Comment:
**Suggestion:** Add an explicit type annotation to this new ORM field so the
model attribute is statically typed. [custom_rule]
**Severity Level:** Minor ๐งน
<details>
<summary><b>Why it matters? โญ </b></summary>
The added ORM field is a new Python class variable with no type annotation,
and the rule explicitly requires type hints for new or modified Python
variables that can be annotated. This is a real omission in the current code.
</details>
<details>
<summary><b>Rule source ๐ </b></summary>
.cursor/rules/dev-standard.mdc (line 28)
</details>
[](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=d6861ef2d5174e04ac5227a958ec1b60&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
[](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=d6861ef2d5174e04ac5227a958ec1b60&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
*(Use Cmd/Ctrl + Click for best experience)*
<details>
<summary><b>Prompt for AI Agent ๐ค </b></summary>
```mdx
This is a comment left during a code review.
**Path:** superset/models/sql_lab.py
**Line:** 488:490
**Comment:**
*Custom Rule: Add an explicit type annotation to this new ORM field so
the model attribute is statically typed.
Validate the correctness of the flagged issue. If correct, How can I resolve
this? If you propose a fix, implement it and please make it concise.
Once fix is implemented, also check other comments on the same PR, and ask
user if the user wants to fix the rest of the comments as well. if said yes,
then fetch all the comments validate the correctness and implement a minimal fix
```
</details>
<a
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41994&comment_hash=3eadbe15f27f610442590cf2a080458241ba3c56b51ff23b6d2c3f5faeac684d&reaction=like'>๐</a>
| <a
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F41994&comment_hash=3eadbe15f27f610442590cf2a080458241ba3c56b51ff23b6d2c3f5faeac684d&reaction=dislike'>๐</a>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]