From 76fc8fbe5ee76e6b79c1ea72c41010826b8704c1 Mon Sep 17 00:00:00 2001 From: khode-mohsen <44228057+khode-mohsen@users.noreply.github.com> Date: Fri, 19 Oct 2018 03:47:19 +0330 Subject: [PATCH] Update deep_linking.py add '#!/usr/bin/python' for direct execute --- examples/deep_linking.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/deep_linking.py b/examples/deep_linking.py index f92680f..3d7ec77 100644 --- a/examples/deep_linking.py +++ b/examples/deep_linking.py @@ -1,3 +1,5 @@ +#!/usr/bin/python + # This example shows how to implement deep linking (https://core.telegram.org/bots#deep-linking) # with the pyTelegramBotAPI. # Note: This is not a working, production-ready sample.