Skip to content

Commit

Permalink
chore: golint code format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xuanskyer committed Nov 8, 2024
1 parent e0ed87c commit e855849
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pkg/client/generic_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ func (c *GenericClientBase) Call() error {
}

if err = c.BuildRequest(); err != nil {
return err
}
resp, err := c.Client.GenericCall(ctx, c.Conf.Method, c.Req, c.CallOptions...)

return err
}
resp, err := c.Client.GenericCall(ctx, c.Conf.Method, c.Req, c.CallOptions...)
if err != nil {
return err
}
Expand Down

0 comments on commit e855849

Please sign in to comment.