Skip to content

Commit 5db31f3

Browse files
committed
Simplify boolean check
1 parent 7a11f0b commit 5db31f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/meshgrids/imfreq.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function ImFreq(dlr::DLRGrid;
9595
if rev
9696
grid = reverse(grid)
9797
end
98-
if (grid isa AbstractGrid) == false
98+
if !(grid isa AbstractGrid)
9999
grid = SimpleG.Arbitrary{Int}(grid)
100100
end
101101
@assert eltype(grid) <: Int "Matsubara-frequency grid should be Int."

0 commit comments

Comments
 (0)