Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Wilms committed Jan 30, 2025
1 parent 5e057d2 commit 4131e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/python/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ async def _handle_client(self, reader: asyncio.StreamReader, writer: asyncio.Str
pair.comm_writer,
pair.data_reader,
pair.data_writer,
get_data_source=lambda type: cast(IDataSource, self._extension_hive.get_extension_type(type)())
get_data_source=lambda typeName: cast(IDataSource, self._extension_hive.get_extension_type(typeName)())
)

pair.task = self._create_task(pair.remote_communicator.run())
Expand Down

0 comments on commit 4131e9d

Please sign in to comment.