Skip to content

Commit aaa621c

Browse files
committed
fix lint
1 parent 4477e4a commit aaa621c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ global-exclude *.pyc
1515
global-exclude .git*
1616
global-exclude .history*
1717
global-exclude .ruff_cache*
18-
global-exclude __pycache__*
18+
global-exclude __pycache__*

__init__.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@
88
__version__ = "1.0.1"
99
__author__ = "DeepCode Team"
1010
__url__ = "https://github.com/HKUDS/DeepCode"
11-
__description__ = "AI Research Engine - Transform research papers into working code automatically"
11+
__description__ = (
12+
"AI Research Engine - Transform research papers into working code automatically"
13+
)
1214

1315
# Import main components for easy access
1416
from .utils import FileProcessor, DialogueLogger
1517

1618
__all__ = [
17-
"FileProcessor",
19+
"FileProcessor",
1820
"DialogueLogger",
1921
"__version__",
2022
"__author__",
2123
"__url__",
22-
"__description__"
23-
]
24+
"__description__",
25+
]

0 commit comments

Comments
 (0)