From cfb28c968a7f48fb33c0f3a5898d50804b4e7318 Mon Sep 17 00:00:00 2001 From: Bram Mittendorff Date: Thu, 30 Nov 2023 15:21:05 +0100 Subject: [PATCH] Fixed isort --- python_gpt_po/po_translator.py | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/python_gpt_po/po_translator.py b/python_gpt_po/po_translator.py index f9541e8..104bec3 100644 --- a/python_gpt_po/po_translator.py +++ b/python_gpt_po/po_translator.py @@ -11,6 +11,7 @@ import polib from dotenv import load_dotenv from openai import OpenAI + from python_gpt_po.version import __version__ # Initialize environment variables and logging diff --git a/setup.py b/setup.py index 169c12d..282e5e1 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ """ from setuptools import find_packages, setup + from python_gpt_po.version import __version__ # Read the contents of README file