From eac9162d2307ce036e1386fd5c1b82e39a789271 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 25 Dec 2020 07:12:20 +1100 Subject: [PATCH] docs: fix simple typo, distrubution -> distribution There is a small typo in tweets_analyzer.py. Should read `distribution` rather than `distrubution`. --- tweets_analyzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweets_analyzer.py b/tweets_analyzer.py index 7a96129..b0009e5 100755 --- a/tweets_analyzer.py +++ b/tweets_analyzer.py @@ -388,7 +388,7 @@ def main(): cprint("[+] Average number of tweets per day: \033[1m%.1f\033[0m" % (num_tweets / float((end_date - start_date).days))) jsono['status_average_tweets_per_day'] = (num_tweets / float((end_date - start_date).days)) - # Print activity distrubution charts + # Print activity distribution charts if args.json is False: export_string("") print_charts(activity_hourly, "Daily activity distribution (per hour)")