diff --git a/src/pylorax/constants.py b/src/pylorax/constants.py index 5f95caf2..0c72dd7e 100644 --- a/src/pylorax/constants.py +++ b/src/pylorax/constants.py @@ -57,16 +57,4 @@ class LoraxRequiredCommands(dict): def __getattr__(self, attr): return self[attr] - def get_missing(self): - missing = [] - for cmd in self.values(): - found = [joinpaths(path, cmd) for path in self.__path - if os.path.exists(joinpaths(path, cmd))] - - if not found: - missing.append(cmd) - - return missing - - FS_OVERHEAD = 512