bottlepy / bottle

bottle.py is a fast and simple micro-framework for python web-applications.
http://bottlepy.org/
MIT License
8.4k stars 1.46k forks source link

refactor Bottle.uninstall(self, plugin) #1273

Closed SergBobrovsky closed 3 years ago

SergBobrovsky commented 3 years ago

Lines like this looks a bit strange:


        for i, plugin in list(enumerate(self.plugins))[::-1]:

                del self.plugins[i]```