When analyzing [MORWiki@0.2](https://github.com/mpimd-csc/MORWiki.jl/tree/v0.2.0), ExplicitImports reports `unzip` being stale: ``` pkg> activate --temp pkg> add ExplicitImports pkg> add MORWiki@0.2 julia> using MORWiki, ExplicitImports julia> check_no_stale_explicit_imports(MORWiki) ``` ``` ERROR: StaleImportsException Module `MORWiki` has stale (unused) explicit imports for: * `unzip` ``` However, it is used inside an [interpolation](https://github.com/mpimd-csc/MORWiki.jl/blob/v0.2.0/src/oberwolfach/steelProfile.jl#L17): ```julia function register_steelProfile() function post_fetch_method(file) run(`$(unzip()) -q $file`) rm(file) end #... end ```