Skip to content

Commit

Permalink
fix KeyError because packets were incorrectly being queried as an `…
Browse files Browse the repository at this point in the history
…APRSPacket` from `aprslib` instead of `packetraven.packets`; individual callsign windows were never created
  • Loading branch information
zacharyburnett committed May 5, 2021
1 parent e29ea78 commit add7515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packetraven/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
from tkinter.ttk import Combobox, Separator
from typing import Callable, Collection

from aprslib.packets.base import APRSPacket
from dateutil.parser import parse
import numpy

from packetraven import APRSDatabaseTable, APRSfi, RawAPRSTextFile, SerialTNC
from packetraven.__main__ import DEFAULT_INTERVAL_SECONDS, LOGGER, retrieve_packets
from packetraven.base import available_serial_ports, next_open_serial_port
from packetraven.connections import APRSis, PacketGeoJSON
from packetraven.packets import APRSPacket
from packetraven.plotting import LivePlot
from packetraven.predicts import PredictionError, get_predictions
from packetraven.tracks import LocationPacketTrack, PredictedTrajectory
Expand Down

0 comments on commit add7515

Please sign in to comment.