Running black for formatting

This commit is contained in:
zandercymatics 2023-10-04 12:25:16 -06:00
parent bb1e7bdf78
commit f0acb978b9
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -732,14 +732,13 @@ class TestRegistrantContacts(MockEppLib):
expected_admin, expected_admin,
expected_registrant, expected_registrant,
expected_security, expected_security,
expected_tech expected_tech,
] ]
for contact in contacts: for contact in contacts:
is_security = contact.contact_type == "security" is_security = contact.contact_type == "security"
expectedCreateCommand = self._convertPublicContactToEpp( expectedCreateCommand = self._convertPublicContactToEpp(
contact, contact, disclose_email=is_security
disclose_email=is_security
) )
self.mockedSendFunction.assert_any_call(expectedCreateCommand, cleaned=True) self.mockedSendFunction.assert_any_call(expectedCreateCommand, cleaned=True)