Skip to content

Commit

Permalink
fix braces
Browse files Browse the repository at this point in the history
Co-authored-by: Kuba_Z2 <[email protected]>
Signed-off-by: Pannoniae <[email protected]>
  • Loading branch information
Pannoniae and KubaZ2 authored Dec 23, 2024
1 parent 7d24a47 commit d480a32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Lavalink4NET.NetCord/GatewayClientWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public GatewayClientWrapper(GatewayClient client)
_client.Ready += HandleReady;
}

private ValueTask HandleReady(ReadyEventArgs arg) {
private ValueTask HandleReady(ReadyEventArgs arg)
{
_ready.TrySetResult(true);
return default;
}
Expand Down

0 comments on commit d480a32

Please sign in to comment.