Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion swiftnav_console/observation_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ def padFloat(self, num, length, digits=2, allowNegative=True): # pylint: disabl
gal_codes = Property(QTKeys.QVARIANTLIST, get_gal_codes, notify=codes_changed) # type: ignore
qzs_codes = Property(QTKeys.QVARIANTLIST, get_qzs_codes, notify=codes_changed) # type: ignore
sbas_codes = Property(QTKeys.QVARIANTLIST, get_sbas_codes, notify=codes_changed) # type: ignore
codes = Property(QTKeys.QVARIANTLIST, get_codes, notify=codes_changed) # type: ignore
# Confusingly, codes depends on self._rows not self._codes
codes = Property(QTKeys.QVARIANTLIST, get_codes, notify=row_count_changed) # type: ignore


def obs_rows_to_json(rows):
Expand Down