Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Update vast_xml_parser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-n93 committed May 1, 2022
1 parent 87d1068 commit e1a7378
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vast_xml_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ def table_population(self):
pass

# Sets table row count based on number of MediaFiles.
dict_count = len(media_file_dictionary.keys())
dict_count = len(media_file_dictionary)
self.table.setRowCount(dict_count)

row_count = 0
row_height = 0

# Creates a list of attribute names.
for dictionary in media_file_dictionary.values():
for attribute_value in dictionary.keys():
for attribute_value in dictionary:
attribute_list.append(attribute_value)

# Creates unique list of attribute names and sets column headers
Expand Down

0 comments on commit e1a7378

Please sign in to comment.