mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-05-02 20:32:38 +02:00
Update write_docstring.py to fix wrong word
This commit is contained in:
parent
6c0531347f
commit
cfb26155c6
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ PYTHON_DOCSTRING_SYSTEM = '''### Requirements
|
|||
### Input Example
|
||||
```python
|
||||
def function_with_pep484_type_annotations(param1: int) -> bool:
|
||||
return isinstanc(param1, int)
|
||||
return isinstance(param1, int)
|
||||
|
||||
class ExampleError(Exception):
|
||||
def __init__(self, msg: str):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue