Skip to content

Commit d66e28d

Browse files
committed
Merge branch 'dev' of github.com:lean-dojo/LeanDojo into dev
2 parents f99b155 + 9f4d398 commit d66e28d

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ exclude = [
1212

1313
[project]
1414
name = "lean-dojo"
15+
<<<<<<< HEAD
1516
version = "4.19.0"
17+
=======
18+
version = "2.1.3"
19+
>>>>>>> 9f4d398c17fe6cb46ebc9906c8a06e7eff643ea0
1620
authors = [
1721
{ name="Kaiyu Yang", email="kaiyuy@meta.com" },
1822
]

src/lean_dojo/interaction/dojo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ def __enter__(self) -> Tuple["Dojo", State]:
282282

283283
assert res["error"] is None
284284

285-
# logger.debug(f"Response: {res}")
286285
if self.uses_tactics:
287286
assert res["tacticState"] != "no goals"
288287
init_state: State = TacticState(
@@ -470,6 +469,7 @@ def _submit_request(self, req: str) -> Dict[str, Any]:
470469
raise DojoCrashError(f"Invalid JSON: {res}")
471470

472471
result["message"] = msg
472+
logger.debug(result)
473473
return result
474474

475475
def _check_alive(self) -> None:

0 commit comments

Comments
 (0)