Skip to content

Commit 5e71dec

Browse files
committed
Second attempt to appease formatter
1 parent d06b24d commit 5e71dec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/asyncresults.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ end
238238

239239
function async_execute(jl_conn::Connection, query::SQLStrings.Sql; kwargs...)
240240
query_str, parameters = SQLStrings.prepare(query)
241-
async_execute(jl_conn, query_str, parameters; kwargs...)
241+
return async_execute(jl_conn, query_str, parameters; kwargs...)
242242
end
243243

244244
function async_execute(

src/results.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ end
301301

302302
function execute(jl_conn::Connection, query::SQLStrings.Sql; kwargs...)
303303
query_str, parameters = SQLStrings.prepare(query)
304-
execute(jl_conn, query_str, parameters; kwargs...)
304+
return execute(jl_conn, query_str, parameters; kwargs...)
305305
end
306306

307307
function execute(

0 commit comments

Comments
 (0)