Any obvious bugs here? ```python def num_incompatible_vers(mod: Mod) -> int: all = [version.Version(v.friendly_version) for v in mod.game.versions] compat = version.Version(mod.default_version.gameversion.friendly_version) return sum(1 for v in all if v > compat) ```