Skip to content

Commit f6ca1bb

Browse files
tuxedommclaude
andcommitted
style: fix gofmt formatting in transport.go
Change-Id: If060b8d27fee9563a9c62ddbc67ed60021e55364 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b0b3a6d commit f6ca1bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/cmdutil/transport.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ type extensionMiddleware struct {
116116
// the built-in chain, then calls the post hook if non-nil.
117117
func (m *extensionMiddleware) RoundTrip(req *http.Request) (*http.Response, error) {
118118
origCtx := req.Context()
119-
req = req.Clone(origCtx) // isolate caller's request before extension mutations
119+
req = req.Clone(origCtx) // isolate caller's request before extension mutations
120120
post := m.Ext.PreRoundTrip(req)
121121
req = req.WithContext(origCtx) // restore original context
122122
resp, err := m.Base.RoundTrip(req)

0 commit comments

Comments
 (0)