Skip to content

Commit

Permalink
formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Oct 14, 2024
1 parent 9f0f155 commit dbabf3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/chat/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ def main():
f.write(uploaded_file.getbuffer())

# make it None so it wont load and overwrite the image
artifacts.artifacts[uploaded_file.name] = open(WORKSPACE / uploaded_file.name, "rb").read()
artifacts.artifacts[uploaded_file.name] = open(
WORKSPACE / uploaded_file.name, "rb"
).read()

for file in WORKSPACE.iterdir():
if "__pycache__" not in str(file) and not str(file).startswith("."):
Expand Down

0 comments on commit dbabf3e

Please sign in to comment.