79172049

Date: 2024-11-09 03:24:41
Score: 0.5
Natty:
Report link

This SQLModel issue is still open. It hasn't be merged to the code base yet.

I recommend the following code:

select(Team).where(
            Team.heros == None,  # noqa E711 Comparison to `None` should be `cond is None`.
)
select(Team).where(
            Team.heros is None,  # This does not work as intended.
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mark Gerrior