Skip to content

Commit b0beea6

Browse files
committed
remove isnothing
1 parent 2bf2987 commit b0beea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler_flags.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ function run_julia(code::String; kw...)
226226
end
227227

228228
function jl_command(flag, value)
229-
(isnothing(value) || isempty(value)) && return ""
229+
(value === nothing || isempty(value)) && return ""
230230
if is_short_flag(flag)
231231
string("-", flag, value)
232232
else

0 commit comments

Comments
 (0)