From 90761b29f1930bff47fb9b3c5aaa0788476fdf82 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Tue, 22 Feb 2022 18:22:40 +0800 Subject: [PATCH] bugfix: export all LeetCode symbols (#153) --- src/LeetCode.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LeetCode.jl b/src/LeetCode.jl index 306affe60..4ce0fb451 100644 --- a/src/LeetCode.jl +++ b/src/LeetCode.jl @@ -10,7 +10,7 @@ include("common.jl") include("problems/problems.jl") # export all -for n in names(@__MODULE__(); all=true) +for n in names(LC; all=true) if Base.isidentifier(n) && !startswith(String(n), "_") && n ∉ (Symbol(@__MODULE__()), :eval, :include)