Skip to content

Commit

Permalink
PC-14787 Fix lint: param type combine
Browse files Browse the repository at this point in the history
  • Loading branch information
BSski committed Dec 16, 2024
1 parent 9ac41cb commit 35659e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nobl9/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func equalSlices(a, b []interface{}) bool {
return true
}

func parseImportID(id string) (project string, resourceID string) {
func parseImportID(id string) (project, resourceID string) {
parts := strings.Split(id, "/")
if len(parts) == 1 {
return "", id
Expand Down

0 comments on commit 35659e9

Please sign in to comment.