From 02baff3f79197103b526385a9ca6e5e583829b4d Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Thu, 19 Oct 2023 16:00:31 -0600 Subject: [PATCH] Add spacing --- src/epplibwrapper/utility/pool.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/epplibwrapper/utility/pool.py b/src/epplibwrapper/utility/pool.py index 322779285..01edb25e8 100644 --- a/src/epplibwrapper/utility/pool.py +++ b/src/epplibwrapper/utility/pool.py @@ -30,12 +30,13 @@ class EPPConnectionPool(ConnectionPool): # For storing shared credentials self._client = client self._login = login + # Keep track of each greenlet self.greenlets = [] # Define optional pool settings. # Kept in a dict so that the parent class, - # client.py, can maintain seperation/expanadability + # client.py, can maintain seperation/expandability self.size = 1 if "size" in options: self.size = options["size"]