Skip to content

Commit 4766fdd

Browse files
authored
Fix deprecated syntax error (#2297)
1 parent 0c4096a commit 4766fdd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/mcmc/gibbs.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,7 @@ function Gibbs(alg1::TGIBBS, algrest::Vararg{TGIBBS,N}) where {N}
6666
return Gibbs{space,N + 1,typeof(algs),typeof(iterations)}(algs, iterations)
6767
end
6868

69-
function Gibbs(
70-
arg1::Tuple{<:TGIBBS,Int}, argrest::Vararg{<:Tuple{<:TGIBBS,Int},N}
71-
) where {N}
69+
function Gibbs(arg1::Tuple{<:TGIBBS,Int}, argrest::Vararg{Tuple{<:TGIBBS,Int},N}) where {N}
7270
allargs = (arg1, argrest...)
7371
algs = map(first, allargs)
7472
iterations = map(last, allargs)

0 commit comments

Comments
 (0)