fix indent in initial df send

This commit is contained in:
Timothy Pogue 2022-10-25 14:08:28 -06:00
parent 3fa50077c9
commit fd5f31368c
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ async def _process_consumer_request(
# For every dataframe, send as a separate message
for _, message in analyzed_df.items():
response = WSAnalyzedDFMessage(data=message)
await channel_manager.send_direct(channel, response.dict(exclude_none=True))
await channel_manager.send_direct(channel, response.dict(exclude_none=True))
@router.websocket("/message/ws")