From e3eaf93eed834948c59e94f82c51bb7d6042386e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Sat, 28 May 2016 23:30:24 +0200 Subject: [PATCH] Updated Code snippets (markdown) --- Code-snippets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code-snippets.md b/Code-snippets.md index e1c1901..a19bedf 100644 --- a/Code-snippets.md +++ b/Code-snippets.md @@ -6,7 +6,7 @@ It is also a follow-up to the page [Introduction to the API](https://github.com/ #### Fetch updates (pure API) To fetch messages sent to your Bot, you can use the [getUpdates](https://core.telegram.org/bots/api#getupdates) API method. -**Note:** You don't have to use `getUpdates` if you are writing your bot with the `telegram.ext` submodule, since `telegram.ext.Updater` takes care of fetching all updates for you. Read more about that [here](). +**Note:** You don't have to use `getUpdates` if you are writing your bot with the `telegram.ext` submodule, since `telegram.ext.Updater` takes care of fetching all updates for you. Read more about that [here](https://github.com/python-telegram-bot/python-telegram-bot/wiki/Extensions-%E2%80%93-Your-first-Bot). ```python >>> updates = bot.getUpdates()