From 31eef48ee4c712c7142862040970c13d67773f7f Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 23 May 2024 12:52:16 +0200 Subject: [PATCH] feat: remove unused setuptools import Removed an unnecessary import of `setuptools` from `__main__.py`. This cleanup reduces the module's dependencies and potentially decreases startup time, making the codebase more efficient and lightweight. No significant functionality is affected by this change, consistent with our ongoing efforts to streamline the code. --- src/deuthon/__main__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/deuthon/__main__.py b/src/deuthon/__main__.py index 96d8aaf..5d8c20a 100755 --- a/src/deuthon/__main__.py +++ b/src/deuthon/__main__.py @@ -3,7 +3,6 @@ import ast import tokenize import pathlib -import setuptools import sys import traceback