Skip to content

Commit f602190

Browse files
committed
fix(integrations): Add type annotation for cursor_result
1 parent 164e6c6 commit f602190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/integrations/api/endpoints/organization_integration_repos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def _get_paginated_repos(
123123
"searchable": install.repo_search,
124124
}
125125
)
126-
cursor_result = CursorResult(
126+
cursor_result: CursorResult = CursorResult(
127127
results=[],
128128
prev=Cursor(0, max(0, cursor.offset - per_page), True, cursor.offset > 0),
129129
next=Cursor(0, cursor.offset + per_page, False, has_next),

0 commit comments

Comments
 (0)