This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit a575b2c46361c7f7f2600642a758e4ede631dac9 Author: Sebb <[email protected]> AuthorDate: Tue Sep 8 19:31:49 2020 +0100 Unused --- server/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/main.py b/server/main.py index cec6dad..3ffb88b 100644 --- a/server/main.py +++ b/server/main.py @@ -56,7 +56,7 @@ class Server(plugins.server.BaseServer): self.server = None # Make a pool of 15 database connections for async queries - for n in range(1, 15): + for _ in range(1, 15): self.dbpool.put_nowait(plugins.database.Database(self.config.database)) # Load each URL endpoint
