Skip to content

Commit

Permalink
Tree: Format
Browse files Browse the repository at this point in the history
Signed-off-by: kingbri <[email protected]>
  • Loading branch information
bdashore3 committed Sep 19, 2024
1 parent 24ea85b commit 4cf8551
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions common/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down

0 comments on commit 4cf8551

Please sign in to comment.