We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Direct Link to Line 508
Line currently reads if data is None: Line should read if parsed_data is None: to prevent parsed_data for being sent with NoneType.
if data is None:
if parsed_data is None:
causes _read_degrees to try and subscript a NoneType, causes script failure.