removed special case

This commit is contained in:
Tristan Lee
2022-10-26 08:22:13 -05:00
parent 3bb5af11e6
commit 5a53ebacd0

View File

@@ -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):