From 4f680acfcb82c1913cb82302d4a57444b2e25b20 Mon Sep 17 00:00:00 2001 From: Tomas Uribe Date: Fri, 19 May 2023 08:25:33 -0500 Subject: [PATCH] Set language default to "rel" so API can be used on a local server --- railib/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railib/api.py b/railib/api.py index 8e28b72..8a45c42 100644 --- a/railib/api.py +++ b/railib/api.py @@ -928,7 +928,7 @@ def exec_async( command: str, readonly: bool = True, inputs: dict = None, - language: str = "", + language: str = "rel", **kwargs, ) -> TransactionAsyncResponse: tx = TransactionAsync(database, engine, readonly=readonly)