Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
granawkins committed Apr 6, 2024
1 parent b00a7b4 commit 893b97a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mentat/code_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ContextStreamMessage(TypedDict):


graphs_dir = mentat_dir_path / "ragdaemon"
graphs_dir.mkdir(exist_ok=True)
graphs_dir.mkdir(parents=True, exist_ok=True)


class CodeContext:
Expand Down

0 comments on commit 893b97a

Please sign in to comment.