Skip to content

Commit 7710319

Browse files
committed
🔖 Bump version to 0.27.1
Improve console output formatting for staged files
1 parent d2a0d34 commit 7710319

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

aicodebot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version = "0.27.0"
1+
version = "0.27.1"
22
AICODEBOT_NO_EMOJI = "AICodeBot"
33
AICODEBOT = f"🤖 {AICODEBOT_NO_EMOJI}"

aicodebot/commands/commit.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ def commit(response_token_size, yes, skip_pre_commit, files): # noqa: PLR0915
5656
files = unstaged_files
5757
else:
5858
# The list of files to be committed is the same as the list of staged files
59-
console.print("The following files have been staged and are ready for commit:\n\t" + "\n\t".join(staged_files))
59+
console.print(
60+
"The following files have been staged and are ready for commit:\n\t" + "\n\t".join(staged_files)
61+
)
6062

6163
files = staged_files
6264

0 commit comments

Comments
 (0)