Skip to content

Commit cf74cef

Browse files
Merge pull request #140 from SciML/dw/kwargs
Remove type annotations of keyword arguments in plot recipes
2 parents 9c1c8fd + d69df1b commit cf74cef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DiffEqDevTools"
22
uuid = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
33
authors = ["Chris Rackauckas <[email protected]>"]
4-
version = "2.44.2"
4+
version = "2.44.3"
55

66
[deps]
77
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"

src/plotrecipes.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ function key_to_label(key::Symbol)
9696
end
9797

9898
@recipe function f(wp_set::WorkPrecisionSet;
99-
x::Symbol = wp_set.error_estimate,
100-
y::Symbol = :times,
99+
x = wp_set.error_estimate,
100+
y = :times,
101101
view = :benchmark,
102102
color = nothing)
103103
if view == :benchmark

0 commit comments

Comments
 (0)