(self, object_name, match)
| 146 | self.log.error('[!] SEARCH: %s' % e) |
| 147 | |
| 148 | async def remove(self, object_name, match): |
| 149 | try: |
| 150 | self.ram[object_name][:] = [obj for obj in self.ram[object_name] if not obj.match(match)] |
| 151 | except Exception as e: |
| 152 | self.log.error('[!] REMOVE: %s' % e) |
| 153 | |
| 154 | async def load_ability_file(self, filename, access): |
| 155 | for entries in self.strip_yml(filename): |