From 0219ac0b5a3388598ce455aaabb1f52d3e9c3cf2 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Mon, 26 Feb 2018 15:51:31 +0100 Subject: [PATCH] Move non-code files into data folder --- examples/{ => data}/pyrogram.png | Bin examples/hello_world.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/{ => data}/pyrogram.png (100%) diff --git a/examples/pyrogram.png b/examples/data/pyrogram.png similarity index 100% rename from examples/pyrogram.png rename to examples/data/pyrogram.png diff --git a/examples/hello_world.py b/examples/hello_world.py index 96934f32..5c3f0304 100644 --- a/examples/hello_world.py +++ b/examples/hello_world.py @@ -10,7 +10,7 @@ client.start() client.send_message("me", "Hi there! I'm using **Pyrogram**") # Send a photo with a formatted caption to yourself -client.send_photo("me", "pyrogram.png", "__This is a formatted__ **caption**") +client.send_photo("me", "data/pyrogram.png", "__This is a formatted__ **caption**") # Send a location to yourself client.send_location("me", 51.500729, -0.124583)