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 | b88f24b680be34b3669f33214758c76439d7b777 (patch) | |
tree | b9815d43d79b631939cd531512b470829ba16436 /src/repl | |
parent | 3fbe74a1067a6e94d62a53d4df834ff425c2c64a (diff) | |
parent | a9af4fd3243e470ff33d50968f998bf78c152717 (diff) |
Merge pull request #8 from bdunahu/bdunahu
Added logger class, tests, arg parsing and cleanup
Diffstat (limited to 'src/repl')
-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 |