Skip to content

Commit

Permalink
Update go/pkg/client/table_stub.go
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Alworth <[email protected]>
  • Loading branch information
kosak and niloc132 authored Dec 30, 2023
1 parent 0cd7d27 commit 36a7812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/pkg/client/table_stub.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func (ts *tableStub) TimeTable(ctx context.Context, period any, startTime any) (
} else if val, ok := period.(string); ok {
req.Period = &tablepb2.TimeTableRequest_PeriodString{PeriodString: val}
} else {
return nil, fmt.Errorf("expected period of signed integer type, time.Duration or string, found %T", period)
return nil, fmt.Errorf("expected period of type signed integer, time.Duration or string, found %T", period)
}

timeVal := reflect.ValueOf(startTime)
Expand Down

0 comments on commit 36a7812

Please sign in to comment.