Skip to content

Commit

Permalink
fix where clause warning (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
ExpandingMan authored Feb 22, 2023
1 parent 45d22ca commit a29826a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TensorBoardLogger"
uuid = "899adc3e-224a-11e9-021f-63837185c80f"
authors = ["Filippo Vicentini <[email protected]>"]
version = "0.1.19"
version = "0.1.20"

[deps]
CRC32c = "8bf52ea8-c179-5cab-976a-9e18b702a9bc"
Expand Down
2 changes: 1 addition & 1 deletion src/logger_dispatch.jl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ summary_impl(name, value::PngImage) = image_summary(name, value)


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


Expand Down

0 comments on commit a29826a

Please sign in to comment.