Skip to content

Commit 8651d1b

Browse files
committed
fix everything?
1 parent d12c62a commit 8651d1b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Codegpt
22

3-
## 0.2.13
3+
## 0.2.15
44

55
A tool for using GPT just a little quicker. A nearly truly automated footgun. Learn how to revert with git before trying please.
66

codegpt/gpt_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import typer
44
from typing import Dict
55
from textwrap import dedent
6-
from parse import parse_resp
6+
from codegpt.parse import parse_resp
77

88
try:
99
nltk.data.find('tokenizers/punkt')

codegpt/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
import logging
55

66

7-
import gpt_interface as gpt
7+
from codegpt import gpt_interface as gpt
88

9-
import prompts
10-
import files
9+
from codegpt import prompts
10+
from codegpt import files
1111

1212
from typing import List, Optional
1313
from pathlib import Path

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "codegpt"
3-
version = "0.2.13"
3+
version = "0.2.15"
44
license = "GPL-3.0-or-later"
55
description = "A CLI tool for refactoring code using OpenAI's models"
66
authors = ["John Partee"]
@@ -21,7 +21,7 @@ requires = ["poetry>=0.12"]
2121
build-backend = "poetry.masonry.api"
2222

2323
[tool.poetry.scripts]
24-
codegpt = "src.main:app"
24+
codegpt = "codegpt.main:app"
2525

2626
[tool.pytest]
2727
addopts = "--capture=fd --cov=my_module"

0 commit comments

Comments
 (0)