Save the view into some pickle file.
(cls)
| 76 | |
| 77 | @classmethod |
| 78 | def save_log(cls): |
| 79 | """ |
| 80 | Save the view into some pickle file. |
| 81 | """ |
| 82 | output = open(STATIC_P, 'wb') |
| 83 | pickle.dump(Log.history, output, protocol=PROTOCOL) |
| 84 | output.close() |
| 85 | |
| 86 | |
| 87 | class Operate(argparse.Action): |