Skip to content

Commit

Permalink
change order of parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
liberty-rising committed Dec 10, 2023
1 parent 674635f commit 6cd2b1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/routes/file_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async def upload_file(

# Instantiate TableManager
with DatabaseManager() as session:
table_manager = TableManager(llm, session)
table_manager = TableManager(session, llm)

# Create new table if necessary
if is_new_table:
Expand Down

0 comments on commit 6cd2b1a

Please sign in to comment.