pmb: Add lots of type hints (MR 2464)

This commit is contained in:
Newbyte 2024-10-29 23:06:59 +01:00
parent d05d57b37e
commit 225d8b30a0
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
71 changed files with 566 additions and 325 deletions

View file

@ -206,7 +206,7 @@ def validate(version):
return True
def compare(a_version: str, b_version: str, fuzzy=False):
def compare(a_version: str, b_version: str, fuzzy: bool = False) -> int:
"""
Compare two versions A and B to find out which one is higher, or if
both are equal.