remove unecessary key/value

This commit is contained in:
Cort Buffington 2019-03-09 22:46:33 -06:00
parent 22e9948341
commit 518e0a02b6
1 changed files with 1 additions and 2 deletions

View File

@ -143,8 +143,7 @@ def mk_full_id_dict(_path, _file, _type):
elif _type == 'tgid':
for record in records:
_dict[int(record['id'])] = {
'NAME': record['callsign'],
'ID': record['id']
'NAME': record['callsign']
}
return _dict
except IOError: