You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_stub_with_token returns a tuple[OpenShellStub, list[tuple[str, str]]]
but was annotated as OpenShellStub.
This caused 31 mypy errors cascading to every call site.
1-line fix to match the actual return value.
Validation: This is a small, concentrated E2E typing fix that matches _stub_with_token's actual return shape.
Review: Independent code review found no blocking correctness, security, maintainability, or missing-test issues at head f337b7ec37873b1df2d9cc414712ecd83696a67a.
Docs: Not needed; this does not change user-facing behavior or Fern-documented UX.
Checks: Required branch, DCO, Python, Rust, license, markdown, lockfile, and Helm gate statuses are passing.
E2E: No test:* label is required for this test-only annotation fix; E2E/GPU gate statuses are passing with those suites not applied.
Human maintainer approval or merge decision is now required.
Monitoring is complete because this PR has merged.
Final status: PR #1897 was in gator:approval-needed; maintainer approval was recorded, required gate statuses were passing, and the PR merged at 2026-06-13T21:21:00Z.
I removed the active gator:* label because there is nothing left for gator to monitor on this PR.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
_stub_with_tokenreturns atuple[OpenShellStub, list[tuple[str, str]]]but was annotated as
OpenShellStub.This caused 31 mypy errors cascading to every call site.
1-line fix to match the actual return value.