Skip to content

Commit 90bf772

Browse files
committed
Fix
1 parent a72fc96 commit 90bf772

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/locality/regional/ids.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func (z ID) String() string {
2525
return fmt.Sprintf("%s/%s", z.Region, z.ID)
2626
}
2727

28-
func ExpandID(id interface{}) ID {
28+
func ExpandID(id any) ID {
2929
regionalID := ID{}
3030
tab := strings.Split(id.(string), "/")
3131

internal/locality/zonal/ids.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func (z ID) String() string {
2525
return fmt.Sprintf("%s/%s", z.Zone, z.ID)
2626
}
2727

28-
func ExpandID(id interface{}) ID {
28+
func ExpandID(id any) ID {
2929
zonedID := ID{}
3030
tab := strings.Split(id.(string), "/")
3131

0 commit comments

Comments
 (0)