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 packages/uls/src/hamkit/uls/_uls.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def call_sign_lookup(self, call_sign: str) -> UlsRecord | None:
Operator_Class,
Group_Code,
Region_Code
FROM LicenseView WHERE Call_Sign = ?;""",
FROM LicenseView WHERE Call_Sign = ?
ORDER BY Unique_System_Identifier DESC;""",
(call_sign.upper().strip(),),
)
row = cursor.fetchone()
Expand Down
Loading