You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"inconfig:
...
so it checks if the key require_auth is in the config dictionary.