Browse Source

ref: GroupValues.priority is nullable (#75153)

when models are checked mypy notices several constructions using the
`priority` column which is nullable

<!-- Describe your PR here. -->
anthony sottile 7 months ago
parent
commit
47949f0151
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/issues/attributes.py

+ 1 - 1
src/sentry/issues/attributes.py

@@ -42,7 +42,7 @@ class GroupValues:
     substatus: int | None
     first_seen: datetime
     num_comments: int
-    priority: int
+    priority: int | None
     first_release_id: int | None