Used to temporarily suppress stdout/stderr.
| 31 | app.logger.setLevel(logging.ERROR + 10) |
| 32 | |
| 33 | class DummyFile(object): |
| 34 | """Used to temporarily suppress stdout/stderr.""" |
| 35 | def write(self, x): pass |
| 36 | def flush(self): pass |
| 37 | |
| 38 | # Folder where captured data will be saved |
| 39 | BASE_FOLDER = os.path.expanduser("~/storage/downloads/MetaMask") |