Skip to content

Commit

Permalink
v0.1 - linters fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wwakabobik committed Sep 12, 2023
1 parent 3f9ae44 commit 56ee51a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"""

# Engines
from src.openai_api.chatgpt import ChatGPT # pylint: disable=unused-import
from src.openai_api.dalle import DALLE # pylint: disable=unused-import
from .src.openai_api.chatgpt import ChatGPT # pylint: disable=unused-import
from .src.openai_api.dalle import DALLE # pylint: disable=unused-import
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "openai_api"
version = "0.1.0"
version = "0.0.1"
authors = [
{ name="Iliya Vereshchagin", email="i.vereshchagin@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = openai_api
version = attr: openai_api.0.1.0
version = attr: openai_api.0.0.1
author = Iliya Vereshchagin
author_email = i.vereshchagin@gmail.com
url = https://github.com/wwakabobik/openai_api
Expand Down
4 changes: 2 additions & 2 deletions src/openai_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
Description:
This file contains module init
"""
from chatgpt import ChatGPT
from dalle import DALLE
from .chatgpt import ChatGPT
from .dalle import DALLE

0 comments on commit 56ee51a

Please sign in to comment.