Skip to content

Commit

Permalink
linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jfhucka committed Nov 18, 2024
1 parent 656adda commit d4e9567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion surfkit/server/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _solve_task(task_model: V1SolveTask, current_user: V1UserProfile):
logger.debug(f"found device: {task_model.task.device.model_dump()}")

config = Device.connect_config_type()(
api_key = current_user.token, **task_model.task.device.config # type: ignore
api_key=current_user.token, **task_model.task.device.config # type: ignore
)
device = Device.connect(config=config)

Expand Down

0 comments on commit d4e9567

Please sign in to comment.