Cosmetic spacing update

This commit is contained in:
coffeepots 2018-07-13 16:36:06 +01:00
parent 591b69c3f7
commit 8b42296553
1 changed files with 1 additions and 3 deletions

View File

@ -16,10 +16,8 @@ proc call*(self: RpcSocketClient, name: string,
params: JsonNode): Future[Response] {.async.} =
## Remotely calls the specified RPC method.
let id = self.getNextId()
var value = $rpcCallNode(name, params, id) & "\c\l"
var
value =
$rpcCallNode(name, params, id) & "\c\l"
if self.transport.isNil:
var connectStr = ""
raise newException(ValueError, "Transport is not initialised (missing a call to connect?)")