mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-22 22:24:02 -06:00
mcu: Avoid using "async" for variables as it conflicts with Python3
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
ca2e84abba
commit
f5cdfad333
2 changed files with 5 additions and 5 deletions
|
@ -78,7 +78,7 @@ class MCU_TMC_uart_bitbang:
|
|||
self.tmcuart_send_cmd = self.mcu.lookup_query_command(
|
||||
"tmcuart_send oid=%c write=%*s read=%c",
|
||||
"tmcuart_response oid=%c read=%*s", oid=self.oid,
|
||||
cq=self.cmd_queue, async=True)
|
||||
cq=self.cmd_queue, is_async=True)
|
||||
def register_instance(self, rx_pin_params, tx_pin_params,
|
||||
select_pins_desc, addr):
|
||||
if (rx_pin_params['pin'] != self.rx_pin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue