Change default PoP argument of esp_prov.get_security from None to string

Signed-off-by: Shivani Tipnis <shivani@espressif.com>
Merges https://github.com/espressif/esp-idf/pull/7130
Closes IDFGH-5380
This commit is contained in:
Alex Henrie 2021-06-09 10:26:02 -06:00 committed by Shivani Tipnis
parent f29d873c54
commit 5ed53c272b

View File

@ -51,7 +51,7 @@ def on_except(err):
print(err)
def get_security(secver, pop=None, verbose=False):
def get_security(secver, pop='', verbose=False):
if secver == 1:
return security.Security1(pop, verbose)
elif secver == 0: