From 3f100a406a5bcbdaa97d45e6182b91c9a7189f70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Ho=CC=88nicke?= Date: Tue, 23 May 2023 15:57:50 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9A=95=20refactor:=20auto=20import?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev_gpt/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dev_gpt/constants.py b/dev_gpt/constants.py index facfeaf..6683bff 100644 --- a/dev_gpt/constants.py +++ b/dev_gpt/constants.py @@ -28,6 +28,7 @@ FILE_AND_TAG_PAIRS = [ INDICATOR_TO_IMPORT_STATEMENT = { 'io.BytesIO': 'import io', + 'BeautifulSoup': 'from bs4 import BeautifulSoup', 'BytesIO': 'from io import BytesIO', 'base64': 'import base64', }