Skip to content

Commit

Permalink
Remove imported = true
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored Dec 20, 2022
1 parent 497e208 commit 12ab353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exports.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
function walkmodules(f, x::Module)
f(x)
for n in names(x; all = true, imported = true)
for n in names(x; all=true)
# `isdefined` and `getproperty` can trigger deprecation warnings
if Base.isbindingresolved(x, n) && !Base.isdeprecated(x, n)
isdefined(x, n) || continue
Expand Down

0 comments on commit 12ab353

Please sign in to comment.