| 3 | import os, shutil, time, sys, argparse, re, json, subprocess |
| 4 | |
| 5 | class ProgramError(Exception): |
| 6 | def __init__(self, message, title = "Error"): |
| 7 | super(Exception, self).__init__(message) |
| 8 | self.title = title |
| 9 | |
| 10 | |
| 11 | class gibMacOS: |
no outgoing calls
no test coverage detected