run through formatter

This commit is contained in:
2025-06-06 13:48:11 +01:00
parent f199fa587f
commit 2d6437d37b
12 changed files with 123 additions and 123 deletions

View File

@@ -22,7 +22,7 @@ class Remote {
}
[string] ToString() {
return "Voicemeeter " + $this.kind.name.substring(0, 1).toupper() + $this.kind.name.substring(1)
return 'Voicemeeter ' + $this.kind.name.substring(0, 1).toupper() + $this.kind.name.substring(1)
}
[Remote] Login() {
@@ -138,13 +138,13 @@ Function Get-RemotePotato {
Function Connect-Voicemeeter {
param([String]$Kind)
switch ($Kind) {
"basic" {
'basic' {
return Get-RemoteBasic
}
"banana" {
'banana' {
return Get-RemoteBanana
}
"potato" {
'potato' {
return Get-RemotePotato
}
default {