Berry fix missing coma (code actually not used in Tasmota)

This commit is contained in:
s-hadinger 2025-07-17 09:59:49 +02:00 committed by GitHub
parent 1fbe52df06
commit d82fb0e07f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -237,7 +237,7 @@ void be_load_maplib(bvm *vm)
{ "insert", m_insert },
{ "iter", m_iter },
{ "keys", m_keys },
{ "tobool", m_tobool }
{ "tobool", m_tobool },
{ NULL, NULL }
};
be_regclass(vm, "map", members);