From 5a53ebacd0b45e2dfb2ed16564d8e0b2010d96b4 Mon Sep 17 00:00:00 2001 From: Tristan Lee Date: Wed, 26 Oct 2022 08:22:13 -0500 Subject: [PATCH] removed special case --- sync_with_gsheet.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sync_with_gsheet.py b/sync_with_gsheet.py index fcd848a..5f939f1 100644 --- a/sync_with_gsheet.py +++ b/sync_with_gsheet.py @@ -6,10 +6,7 @@ from cisticola.base import Channel, ChannelInfo def standardize_country(s): _s = s.split('(')[0].split('?')[0] - if _s == 'AUS': - return 'AU' - else: - return _s.strip() + return _s.strip() def sync_channels(args, session):