Add spacing

This commit is contained in:
zandercymatics 2023-10-19 16:00:31 -06:00
parent 055942fe3a
commit 02baff3f79
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -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"]