Skip to content

Commit 455d017

Browse files
committed
refactor: no need for @something
1 parent f45e146 commit 455d017

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SearchUtils.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,11 @@ end
193193
_progress = something(progress, options_progress, (_verbosity > 0) && nout == 1)
194194
_addprocs_function = something(addprocs_function, addprocs)
195195
_worker_timeout = Float64(
196-
@something(
196+
something(
197197
worker_timeout,
198198
tryparse(Float64, get(ENV, "JULIA_WORKER_TIMEOUT", "")),
199-
max(60, _numprocs^2)
200-
)
199+
max(60, _numprocs^2),
200+
),
201201
)
202202
_run_id = @something(run_id, generate_run_id())
203203

0 commit comments

Comments
 (0)