From 05277bbb460d463465a28ce72b634e9bd09c4bb1 Mon Sep 17 00:00:00 2001 From: Camille Frantz Date: Sun, 8 Jun 2025 15:03:19 -0500 Subject: [PATCH] debugging --- dog_facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dog_facts.py b/dog_facts.py index 6221ada..5731a28 100644 --- a/dog_facts.py +++ b/dog_facts.py @@ -28,7 +28,7 @@ response = get(api_url) if response.reason == "OK": dog_fact = DefaultMunch.fromDict(loads(response.text)['data'][0]) print(dog_fact) - payload = {"status": f"didja know: \n {dog_fact.attributes.body}\n#RandomDogFacts", "visibility": "mutuals_only"} + payload = {"status": f"didja know: \n {dog_fact.attributes.body}\n#RandomDogFacts", "visibility": "unlisted"} response = post(post_endpoint, headers=headers, json=payload) if response.reason == "OK": notify(-1, loads(response.text)['uri'])