Skip to content

Commit 3bb0438

Browse files
committed
fixing format
1 parent c313478 commit 3bb0438

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/sklearn.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,6 @@ function generate_swiss_roll(; n_samples::Int = 100,
362362
return convert(features, labels)
363363
end
364364

365-
366365
"""
367366
function generate_hastie_10_2(; n_samples::Int = 12000,
368367
random_state::Union{Int,Nothing} = nothing)

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ using Test
7979
@test size(data)[1] == samples
8080
@test size(data)[2] == 4
8181

82-
data = SyntheticDatasets.generate_hastie_10_2(n_samples = samples,
83-
random_state = 5)
82+
data = SyntheticDatasets.generate_hastie_10_2(n_samples = samples,
83+
random_state = 5)
8484

85-
@test size(data)[1] == samples
86-
@test size(data)[2] == 11
85+
@test size(data)[1] == samples
86+
@test size(data)[2] == 11
8787
end

0 commit comments

Comments
 (0)