use any instead of interface{} (#1354)

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2023-03-08 04:31:20 -05:00 committed by GitHub
parent fede4ec6d2
commit 64fc43f276
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -458,7 +458,7 @@ func (i *ChartLoader) loadConstellationServicesValues() (map[string]any, error)
}
case cloudprovider.QEMU:
values["tags"] = map[string]interface{}{
values["tags"] = map[string]any{
"QEMU": true,
}