Skip to content

Commit

Permalink
Remove accidentally added nbqa-black
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaranvpl committed Jan 10, 2025
1 parent a5de6f6 commit 808807b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,6 @@ repos:
notebook/.* |
website/.*
)$
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.8.5
hooks:
- id: nbqa-black
- repo: local
hooks:
Expand Down
12 changes: 6 additions & 6 deletions notebook/agentchat_nested_chats_chess_altmodels.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@
"made_move = False\n",
"\n",
"\n",
"# fmt: off\n",
"def get_legal_moves() -> Annotated[\n",
" str,\n",
" \"Call this tool to list of all legal chess moves on the board, output is a list in UCI format, e.g. e2e4,e7e5,e7e8q.\",\n",
"]:\n",
"def get_legal_moves() -> (\n",
" Annotated[\n",
" str,\n",
" \"Call this tool to list of all legal chess moves on the board, output is a list in UCI format, e.g. e2e4,e7e5,e7e8q.\",\n",
" ]\n",
"):\n",
" return \"Possible moves are: \" + \",\".join([str(move) for move in board.legal_moves])\n",
"# fmt: on\n",
"\n",
"\n",
"def make_move(\n",
Expand Down

0 comments on commit 808807b

Please sign in to comment.