Skip to content

Commit e76c4b5

Browse files
committed
style: fix formatting
1 parent 5b66ca3 commit e76c4b5

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

test/lotka_volterra.jl

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,8 @@ end
4343
model = lotka_ude()
4444
nn = create_ude_component(2, 2)
4545

46-
eqs = [
47-
connect(model.nn_in, nn.output)
48-
connect(model.nn_out, nn.input)
49-
]
46+
eqs = [connect(model.nn_in, nn.output)
47+
connect(model.nn_out, nn.input)]
5048

5149
ude_sys = complete(ODESystem(
5250
eqs, ModelingToolkit.t_nounits, systems = [model, nn], name = :ude_sys))
@@ -94,7 +92,6 @@ ps = (prob, sol_ref, get_vars, get_refs);
9492

9593
op = OptimizationProblem(of, x0, (prob, sol_ref, get_vars, get_refs))
9694

97-
9895
# using Plots
9996

10097
# oh = []

test/qa.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ using UDEComponents
33
using Aqua
44
using JET
55

6-
@testset verbose = true "Code quality (Aqua.jl)" begin
6+
@testset verbose=true "Code quality (Aqua.jl)" begin
77
Aqua.find_persistent_tasks_deps(UDEComponents)
88
Aqua.test_ambiguities(UDEComponents, recursive = false)
99
Aqua.test_deps_compat(UDEComponents)
1010
# TODO: fix type piracy in propagate_ndims and propagate_shape
11-
Aqua.test_piracies(UDEComponents, broken=true)
11+
Aqua.test_piracies(UDEComponents, broken = true)
1212
Aqua.test_project_extras(UDEComponents)
1313
Aqua.test_stale_deps(UDEComponents, ignore = Symbol[])
1414
Aqua.test_unbound_args(UDEComponents)

0 commit comments

Comments
 (0)