From 0a90c556d5b201ec4e03a769330fca462b404c27 Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 19 Sep 2024 09:15:41 +0200 Subject: [PATCH] refactor: remove unnecessary imports in const.py Cleaned up unused os imports in the configuration module to improve readability and reduce clutter. This change has no impact on functionality. No related issues. --- src/small/const.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/small/const.py b/src/small/const.py index 1aa2d06..5b84b69 100644 --- a/src/small/const.py +++ b/src/small/const.py @@ -1,6 +1,3 @@ -import os - - class Config: MEDIUM_API_URL = "https://medium.com/_/graphql" GITHUB_API_URL = "https://api.github.com"