(self)
| 1515 | FLOAT_FIELDS = {"opacity"} |
| 1516 | |
| 1517 | def get_config(self): |
| 1518 | config = dict(settings.items()) |
| 1519 | config["admin_token"] = "" |
| 1520 | for key in INTERNAL_CONFIG_KEYS: |
| 1521 | config.pop(key, None) |
| 1522 | return config |
| 1523 | |
| 1524 | async def update_config(self, data: dict): |
| 1525 | current_config = dict(settings.items()) |