Merge pull request #107 from jina-ai/refactor_auto_import

⚕ refactor: auto import
This commit is contained in:
Florian Hönicke
2023-05-23 17:07:24 +02:00
committed by GitHub

View File

@@ -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',
}