Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
luyaxi committed Oct 9, 2024
1 parent d6cf82e commit a273312
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion codelinker/linker.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def __init__(self, config: CodeLinkerConfig|str|os.PathLike, logger: logging.Log
else:
self.logger = logger

self.objGen = OBJGenerator(config, self.logger)
self.objGen = OBJGenerator(self.config, self.logger)
self.pool = ThreadPoolExecutor(
thread_name_prefix="CodeLinkerHandlerThread")

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "codelinker"
version = "0.3.22"
version = "0.3.23"
description = "A tool to link the code with large language models."
authors = ["luyaxi <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit a273312

Please sign in to comment.