Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
fix: arg name
Browse files Browse the repository at this point in the history
  • Loading branch information
dsdanielpark committed Aug 9, 2023
1 parent 448cf78 commit ec767b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documents/README_DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,10 @@ from bardapi import Bard
bard = Bard(token='xxxxxxxx')
bard_answer = bard.get_answer("code python to print hello world")
# {'code': 'print("Hello World")', 'langCode': 'python'}
# {'code': 'print("Hello World")', 'program_lang': 'python'}
url = bard.export_replit(
code=bard_answer['code'],
langcode=bard_answer['langCode'],
program_lang=bard_answer['program_lang'],
)
print(url['url']) # https://replit.com/external/v1/claims/xxx/claim
```
Expand Down

0 comments on commit ec767b9

Please sign in to comment.