Add self return for pydantic (#17091)

This commit is contained in:
Nicolas Mowen 2025-03-11 06:57:00 -06:00 committed by GitHub
parent bea6cf29c2
commit c43092da9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,3 +37,5 @@ class LoggerConfig(FrigateBaseModel):
for log, level in log_levels.items():
logging.getLogger(log).setLevel(level.value.upper())
return self