aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2020-06-11 21:39:27 -0400
committerKevin O'Connor <kevin@koconnor.net>2020-06-15 17:15:53 -0400
commitf5cdfad333655c2511a8c1a35c9d2f308cd411ac (patch)
treeb5056550c924c004f1051b64089a74c1baaf3d26 /klippy/extras
parentca2e84abbae8b53534146edb8b0aacc769e121ee (diff)
downloadkutter-f5cdfad333655c2511a8c1a35c9d2f308cd411ac.tar.gz
kutter-f5cdfad333655c2511a8c1a35c9d2f308cd411ac.tar.xz
kutter-f5cdfad333655c2511a8c1a35c9d2f308cd411ac.zip
mcu: Avoid using "async" for variables as it conflicts with Python3
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras')
-rw-r--r--klippy/extras/tmc_uart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/tmc_uart.py b/klippy/extras/tmc_uart.py
index 8b304a74..2e37cc43 100644
--- a/klippy/extras/tmc_uart.py
+++ b/klippy/extras/tmc_uart.py
@@ -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