From 74b1e3197e7ca5087051710073199d9f464ac388 Mon Sep 17 00:00:00 2001 From: Claromes Date: Fri, 21 Jun 2024 12:05:46 -0300 Subject: [PATCH] update poetry config, review tweet parser error msg --- pyproject.toml | 1 + waybacktweets/api/parse.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2085a84..4f2608b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,6 +5,7 @@ description = "Retrieves archived tweets CDX data from the Wayback Machine, perf authors = ["Claromes "] license = "GPLv3" readme = "README.md" +repository = "https://github.com/claromes/waybacktweets" keywords = [ "twitter", "tweet", diff --git a/waybacktweets/api/parse.py b/waybacktweets/api/parse.py index c6d3510..f338bb7 100644 --- a/waybacktweets/api/parse.py +++ b/waybacktweets/api/parse.py @@ -98,7 +98,7 @@ class TwitterEmbed: except HTTPError: if config.verbose: rprint( - f"[yellow]{self.tweet_url} not available on the user's account, but the CDX data was saved." # noqa: E501 + f"[yellow]{self.tweet_url} not available on the user's Twitter account, but the CDX data was saved." # noqa: E501 ) except GetResponseError as e: if config.verbose: -- 2.34.1