Skip to content

Commit

Permalink
Fixed Typing error, avoiding for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Mar 30, 2022
1 parent 51e95df commit 81468e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions aprscot/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

import datetime

from typing import List

import xml.etree.ElementTree as ET

import pytak
Expand All @@ -20,8 +18,7 @@
__source__ = "https://github.com/ampledata/aprscot"


def aprs_to_cot_xml(aprs_frame: dict, config: dict) -> \
List[ET.Element, None]: # NOQA pylint: disable=too-many-locals,too-many-statements
def aprs_to_cot_xml(aprs_frame: dict, config: dict) -> ET.Element: # NOQA pylint: disable=too-many-locals,too-many-statements
"""Converts an APRS Frame to a Cursor-on-Target Event."""
time = datetime.datetime.now(datetime.timezone.utc)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import setuptools

__title__ = "aprscot"
__version__ = "5.0.3"
__version__ = "5.0.4"
__author__ = "Greg Albrecht W2GMD <oss@undef.net>"
__copyright__ = "Copyright 2022 Greg Albrecht"
__license__ = "Apache License, Version 2.0"
Expand Down

0 comments on commit 81468e5

Please sign in to comment.