Skip to content

Commit

Permalink
Merge pull request #33 from KrySeyt/fix_example_typos
Browse files Browse the repository at this point in the history
Fix typos in examples/example.py.RealClient methods docstrings
  • Loading branch information
Tishka17 authored Mar 15, 2024
2 parents 1f41a6b + 084d9f9 commit 8d0a128
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ def delete_todo(self, id: int):

@post("todos")
def create_todo(self, body: Todo) -> Todo:
"""Созадем Todo"""
"""Создаем Todo"""

@get("https://httpbin.org/get")
def get_httpbin(self):
"""Используемый другой base_url"""
"""Используем другой base_url"""

@post("https://httpbin.org/post")
def upload_image(self, file: File):
"""Заргужаем картинку"""
"""Загружаем картинку"""


logging.basicConfig(level=logging.INFO)
Expand Down

0 comments on commit 8d0a128

Please sign in to comment.