Author: brane Date: Thu Jul 10 23:48:40 2025 New Revision: 1927123 URL: http://svn.apache.org/viewvc?rev=1927123&view=rev Log: * test/certs/create_certs.py (create_cert): Remove a left over type annotation.
Modified: serf/trunk/test/certs/create_certs.py Modified: serf/trunk/test/certs/create_certs.py URL: http://svn.apache.org/viewvc/serf/trunk/test/certs/create_certs.py?rev=1927123&r1=1927122&r2=1927123&view=diff ============================================================================== --- serf/trunk/test/certs/create_certs.py (original) +++ serf/trunk/test/certs/create_certs.py Thu Jul 10 23:48:40 2025 @@ -118,7 +118,7 @@ def create_crl(revokedcert, cakey, cacer # subjectAltName -def create_cert(subjectkey, certfile, issuer: Certificate=None, issuerkey=None, country='', +def create_cert(subjectkey, certfile, issuer=None, issuerkey=None, country='', state='', city='', org='', ou='', cn='', email='', ca=False, not_before=NOT_BEFORE, not_after=NOT_AFTER, subjectAltName=None, ocsp_responder_url=None, ocsp_signer=False):