From 0091b5ee1a72208a441ba87dfb117a3f120d0e57 Mon Sep 17 00:00:00 2001 From: ilu_vatar_ Date: Wed, 8 Dec 2021 14:58:03 +0100 Subject: [PATCH] fixed typo --- tello_state.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tello_state.py b/tello_state.py index 81bb97a..68f4b15 100644 --- a/tello_state.py +++ b/tello_state.py @@ -22,9 +22,9 @@ def report(str): tello_ip = '192.168.10.1' tello_port = 8889 - tello_adderss = (tello_ip, tello_port) + tello_address = (tello_ip, tello_port) - socket.sendto('command'.encode('utf-8'), tello_adderss) + socket.sendto('command'.encode('utf-8'), tello_address) try: index = 0