Skip to content

Commit 81468e5

Browse files
committed
Fixed Typing error, avoiding for now.
1 parent 51e95df commit 81468e5

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

aprscot/functions.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55

66
import datetime
77

8-
from typing import List
9-
108
import xml.etree.ElementTree as ET
119

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

2220

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import setuptools
1414

1515
__title__ = "aprscot"
16-
__version__ = "5.0.3"
16+
__version__ = "5.0.4"
1717
__author__ = "Greg Albrecht W2GMD <oss@undef.net>"
1818
__copyright__ = "Copyright 2022 Greg Albrecht"
1919
__license__ = "Apache License, Version 2.0"

0 commit comments

Comments
 (0)