root: fix config loading after refactor during ruff migration (#8674)

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens L
2024-02-24 20:38:51 +01:00
committed by GitHub
parent b225b0200e
commit f50d44792c

View File

@ -200,6 +200,8 @@ class ConfigLoader:
value = self.parse_uri(raw_value.value)
elif not isinstance(raw_value, Attr):
value = Attr(raw_value)
else:
value = raw_value
root[key] = value
return root