Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aider/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from packaging import version

__version__ = "0.88.31.dev"
__version__ = "0.88.32.dev"
safe_version = __version__

try:
Expand Down
3 changes: 1 addition & 2 deletions aider/coders/chat_chunks.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ class ChatChunks:
chunk_ordering: List = field(default_factory=list)

def __init__(self, chunk_ordering=None):
if chunk_ordering is not None:
self.chunk_ordering = chunk_ordering
self.chunk_ordering = chunk_ordering

def all_messages(self):
if self.chunk_ordering:
Expand Down