clean up unused function from prefixed_env pr

This commit is contained in:
David Lord 2022-03-25 12:24:31 -07:00
parent 2f5a2ab82e
commit 41aaaf7fa0
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
1 changed files with 0 additions and 7 deletions

View File

@ -7,13 +7,6 @@ import typing as t
from werkzeug.utils import import_string
def _json_loads(raw: t.Union[str, bytes]) -> t.Any:
try:
return json.loads(raw)
except json.JSONDecodeError:
return raw
class ConfigAttribute:
"""Makes an attribute forward to the config"""