mutli_ack -> multi_acks

This commit is contained in:
Florent de Lamotte 2025-10-30 11:07:24 +01:00 committed by Florent
parent 3ad3be82e7
commit 9b6c799d04
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "meshcore"
version = "2.1.18"
version = "2.1.19"
authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
{ name="Alex Wolden", email="awolden@gmail.com" },

View file

@ -152,7 +152,7 @@ class DeviceCommands(CommandHandlerBase):
infos["adv_loc_policy"] = advert_loc_policy
return await self.set_other_params_from_infos(infos)
async def set_multi_ack(self, multi_acks: int) -> Event:
async def set_multi_acks(self, multi_acks: int) -> Event:
infos = (await self.send_appstart()).payload
infos["multi_acks"] = multi_acks
return await self.set_other_params_from_infos(infos)