diff --git a/24-quarantine/tf-24.py b/24-quarantine/tf-24.py index 5da4590..6501599 100644 --- a/24-quarantine/tf-24.py +++ b/24-quarantine/tf-24.py @@ -68,6 +68,11 @@ def top25_freqs(word_freqs): # # The main function # -quarantine = TFQuarantine(get_input).bind(extract_words).bind(remove_stop_words).bind(frequencies).bind(sort).bind(top25_freqs) -quarantine.execute() +TFQuarantine(get_input)\ +.bind(extract_words)\ +.bind(remove_stop_words)\ +.bind(frequencies)\ +.bind(sort)\ +.bind(top25_freqs)\ +.execute()