From 4cf85514f7ed2c9eb5cd477cdcf78cd0308b9008 Mon Sep 17 00:00:00 2001 From: kingbri Date: Wed, 18 Sep 2024 20:36:17 -0400 Subject: [PATCH] Tree: Format Signed-off-by: kingbri --- common/auth.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/common/auth.py b/common/auth.py index 67e393b..b02cdd0 100644 --- a/common/auth.py +++ b/common/auth.py @@ -74,9 +74,7 @@ async def load_auth_keys(disable_from_config: bool): async with aiofiles.open("api_tokens.yml", "w", encoding="utf8") as auth_file: string_stream = io.StringIO() - yaml.dump( - AUTH_KEYS.model_dump(), string_stream - ) + yaml.dump(AUTH_KEYS.model_dump(), string_stream) await auth_file.write(string_stream.getvalue())