Skip to content

Commit 8f7be52

Browse files
committed
Remove duplicate code
1 parent 41adc43 commit 8f7be52

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

mathics/core/definitions.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,6 @@ def __init__(
110110
pickle.dump(self.builtin, builtin_file, -1)
111111

112112
autoload_files(self, ROOT_DIR, "autoload")
113-
# Load symbols from the autoload folder
114-
for root, dirs, files in os.walk(os.path.join(ROOT_DIR, "autoload")):
115-
for path in [os.path.join(root, f) for f in files if f.endswith(".m")]:
116-
Expression("Get", String(path)).evaluate(Evaluation(self))
117113

118114
# Move any user definitions created by autoloaded files to
119115
# builtins, and clear out the user definitions list. This

0 commit comments

Comments
 (0)