(self, input)
| 833 | self.log_file = log_file |
| 834 | |
| 835 | def __call__(self, input): |
| 836 | input = str(input) |
| 837 | with open(self.log_file, 'a') as f: |
| 838 | f.writelines(input+'\n') |
| 839 | print(input) |
| 840 | |
| 841 | |
| 842 |
nothing calls this directly
no outgoing calls
no test coverage detected