From 6497265c65d34d004cc86b1bda45ec28c4b0e306 Mon Sep 17 00:00:00 2001 From: Emmanuel Morales <31712515+EmmanuelMr18@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:34:11 -0600 Subject: [PATCH] deps: remove unused PrettyTable import The import is there, but I don't see that is getting used. I think that is better to remove it because that means a dependency less. --- nodes/nodes.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nodes/nodes.py b/nodes/nodes.py index 17fc2a4..3443dfe 100644 --- a/nodes/nodes.py +++ b/nodes/nodes.py @@ -11,7 +11,6 @@ # Import html formatting stuff from bs4 import BeautifulSoup -from prettytable import PrettyTable import datetime # Import Additional common libs @@ -71,4 +70,4 @@ def execute_code(self, code, variable=None, image=None): # Get the output and return it along with the image as a tuple output = redirected_output.getvalue() - return (output, image) \ No newline at end of file + return (output, image)