(self, inp)
| 910 | ) |
| 911 | |
| 912 | def preproc_user_input(self, inp): |
| 913 | if not inp: |
| 914 | return |
| 915 | |
| 916 | if self.commands.is_command(inp): |
| 917 | return self.commands.run(inp) |
| 918 | |
| 919 | self.check_for_file_mentions(inp) |
| 920 | inp = self.check_for_urls(inp) |
| 921 | |
| 922 | return inp |
| 923 | |
| 924 | def run_one(self, user_message, preproc): |
| 925 | self.init_before_message() |
no test coverage detected