edit supported func

This commit is contained in:
leminlimez
2024-10-26 16:38:53 -04:00
parent 8a996db22b
commit 1922fb774c

View File

@@ -23,9 +23,6 @@ class Device:
return False
def supported(self) -> bool:
parsed_ver: Version = Version(self.version)
if parsed_ver > Version("18.1"):
return False
return self.has_exploit()
class Version: