Currently, the require_auth value defined in metadata.json is not being set. On line 20 in __init__.py, the if statement is evaluating the condition incorrectly.
The intended behavior should be
if "require_auth" in config:
...
so it checks if the key require_auth is in the config dictionary.