Skip to content

Commit 40d6d05

Browse files
committed
fixed bad typing for civ craft
1 parent c70d6cb commit 40d6d05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aircot/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def set_friendly_mil(icao_int: int, affil: str = "", attitude: str = ".") -> tup
178178

179179
def set_neutral_civ(icao: int, affil: str = "", attitude: str = ".") -> tuple:
180180
"""Sets Affiliation and Attitude for known 'neutral' Civilian ICAOs."""
181-
if icao_in_range(icao, "MIL"):
181+
if icao_in_range(icao):
182182
attitude = "n"
183183
affil = "C"
184184
return affil, attitude

0 commit comments

Comments
 (0)