diff --git a/src/g5505_file_reader.py b/src/g5505_file_reader.py index 92145c9..67f7253 100644 --- a/src/g5505_file_reader.py +++ b/src/g5505_file_reader.py @@ -273,7 +273,8 @@ def read_txt_files_as_dict(filename : str , work_with_copy : bool = True ): dataset['attributes'] = {} for column_name in df.columns: - column_attr_dict = description_dict['table_header'].get(column_name,{'note':'there was no description available. Review instrument files.'}) + column_attr_dict = description_dict['table_header'].get(column_name, + {'note':'there was no description available. Review instrument files.'}) dataset['attributes'].update({column_name: utils.parse_attribute(column_attr_dict)}) #try: