Skip to content

Commit a29826a

Browse files
authored
fix where clause warning (#117)
1 parent 45d22ca commit a29826a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "TensorBoardLogger"
22
uuid = "899adc3e-224a-11e9-021f-63837185c80f"
33
authors = ["Filippo Vicentini <[email protected]>"]
4-
version = "0.1.19"
4+
version = "0.1.20"
55

66
[deps]
77
CRC32c = "8bf52ea8-c179-5cab-976a-9e18b702a9bc"

src/logger_dispatch.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ summary_impl(name, value::PngImage) = image_summary(name, value)
7070

7171

7272
########## For things going to LogText ##############################
73-
preprocess(name, val::AbstractString, data) where T<:String = push!(data, name=>val)
73+
preprocess(name, val::AbstractString, data) = push!(data, name=>val)
7474
summary_impl(name, value::Any) = text_summary(name, value)
7575

7676

0 commit comments

Comments
 (0)