(cls)
| 5 | class PythonConfiguration: |
| 6 | @classmethod |
| 7 | def Validate(cls): |
| 8 | if not cls.__ValidatePython(): |
| 9 | return # cannot validate further |
| 10 | |
| 11 | for packageName in ["requests"]: |
| 12 | if not cls.__ValidatePackage(packageName): |
| 13 | return # cannot validate further |
| 14 | |
| 15 | @classmethod |
| 16 | def __ValidatePython(cls, versionMajor = 3, versionMinor = 3): |
no test coverage detected