remove unecessary key/value

This commit is contained in:
Cort Buffington 2019-03-09 22:46:33 -06:00
parent 22e9948341
commit 518e0a02b6

View File

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