From 84e93652a1e2dd94ef9398f2f92d12b065c3763c Mon Sep 17 00:00:00 2001 From: Hammy Date: Fri, 29 Jan 2021 02:55:33 +0000 Subject: [PATCH] Rename bot.py to winston.py --- twitter/bot/commands.py | 2 +- twitter/bot/handler.py | 2 +- twitter/bot/{bot.py => winston.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename twitter/bot/{bot.py => winston.py} (100%) diff --git a/twitter/bot/commands.py b/twitter/bot/commands.py index 33d7113..01695c9 100644 --- a/twitter/bot/commands.py +++ b/twitter/bot/commands.py @@ -1,4 +1,4 @@ -from twitter.bot.bot import Winston +from twitter.bot.winston import Winston def send_tweet(tweet_text): diff --git a/twitter/bot/handler.py b/twitter/bot/handler.py index a22e099..4d99ca5 100644 --- a/twitter/bot/handler.py +++ b/twitter/bot/handler.py @@ -1,4 +1,4 @@ -from twitter.bot.bot import Winston +from twitter.bot.winston import Winston def handler(event, context): diff --git a/twitter/bot/bot.py b/twitter/bot/winston.py similarity index 100% rename from twitter/bot/bot.py rename to twitter/bot/winston.py