Skip to content

Commit d9b57a7

Browse files
committed
Fix small syntax bug in latest release.
1 parent 1ff12c3 commit d9b57a7

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "readmeai"
7-
version = "0.4.990"
7+
version = "0.4.991"
88
description = "🎈 Automated README file generator, powered by GPT language model APIs"
99
authors = ["Eli <0x.eli.64s@gmail.com>"]
1010
license = "MIT"

readmeai/config/settings.py

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

33
import re
44
from importlib import resources
5-
import pkg_resources
65
from pathlib import Path
76
from typing import Dict, List, Optional, Union
87
from urllib.parse import urlparse, urlsplit
98

9+
import pkg_resources
1010
from pydantic import BaseModel, validator
1111

1212
from readmeai.config.enums import GitService

readmeai/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import asyncio
88
import os
9-
import shutil
109
import tempfile
1110
import traceback
1211
from typing import List

0 commit comments

Comments
 (0)