diff --git a/bot/bot.py b/bot/bot.py index f932efd..9785a74 100644 --- a/bot/bot.py +++ b/bot/bot.py @@ -6,18 +6,18 @@ from datetime import datetime # Set up Mastodon mastodon = Mastodon( - access_token = 'token.secret', - api_base_url = os.getenv('MASTODON_URL', 'https://mastodon.wazongtest.de/') + access_token='token.secret', + api_base_url=os.getenv('MASTODON_URL', 'https://mastodon.wazongtest.de/') ) -tz = timezone('Europe/Berlin') +tz = timezone('Europe/Berlin') now = datetime.now().astimezone(tz) -moon_text="Aktuelle Mondphase:\n" -moon_text+=moon.moon_phase_as_text(now) +moon_text = "Aktuelle Mondphase:\n" +moon_text += moon.moon_phase_as_text(now) print(moon_text) mastodon.status_post(moon_text, visibility='unlisted') me = mastodon.me() -print(mastodon.account_statuses(me['id'])[0]) \ No newline at end of file +print(mastodon.account_statuses(me['id'])[0])