diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-03-02 20:35:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-02 20:35:40 -0500 |
commit | e3369aad54bce775e2951e71618eb2cbb17972f9 (patch) | |
tree | b9815d43d79b631939cd531512b470829ba16436 /src/repl/repl.py | |
parent | ac072708e869970f33f3523dda3051a39a9ba611 (diff) | |
parent | a9af4fd3243e470ff33d50968f998bf78c152717 (diff) |
Merge pull request #8 from bdunahu/bdunahu
Added logger class, tests, arg parsing and cleanup
Diffstat (limited to 'src/repl/repl.py')
-rw-r--r-- | src/repl/repl.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/repl/repl.py b/src/repl/repl.py deleted file mode 100644 index d78986d..0000000 --- a/src/repl/repl.py +++ /dev/null @@ -1,10 +0,0 @@ -from code import InteractiveConsole - -def start(user): - header =f"Press C-d to close." - footer = f"See you later, {user}!" - - scope_vars = {"cache_size": 12} - - InteractiveConsole(locals=scope_vars).interact(header, "") - return footer |