(self)
| 896 | self.commands.cmd_copy_context() |
| 897 | |
| 898 | def get_input(self): |
| 899 | inchat_files = self.get_inchat_relative_files() |
| 900 | read_only_files = [self.get_rel_fname(fname) for fname in self.abs_read_only_fnames] |
| 901 | all_files = sorted(set(inchat_files + read_only_files)) |
| 902 | edit_format = "" if self.edit_format == self.main_model.edit_format else self.edit_format |
| 903 | return self.io.get_input( |
| 904 | self.root, |
| 905 | all_files, |
| 906 | self.get_addable_relative_files(), |
| 907 | self.commands, |
| 908 | self.abs_read_only_fnames, |
| 909 | edit_format=edit_format, |
| 910 | ) |
| 911 | |
| 912 | def preproc_user_input(self, inp): |
| 913 | if not inp: |
no test coverage detected