noting why type is ignored

This commit is contained in:
David Kennedy 2024-03-05 14:50:20 -05:00
parent a75caa2fdb
commit 6e13345161
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B

View file

@ -62,6 +62,8 @@ class EPPLibWrapper:
client. Raises errors if initialization fails.
This method will be called at app initialization, and also during retries."""
# establish a client object with a TCP socket transport
# note that type: ignore added in several places because linter complains
# about _client initially being set to None, and None type doesn't match code
self._client = Client( # type: ignore
SocketTransport(
settings.SECRET_REGISTRY_HOSTNAME,