Skip to content

Commit

Permalink
Explicitly adding sys import in cases where it may not be pre-loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaldwin committed Aug 30, 2018
1 parent f4a2316 commit 6114c2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lesson6-keyboard-commands/TelloKeyboardCommands.ipynb
Expand Up @@ -10,6 +10,7 @@
"import socket\n",
"import threading\n",
"import time\n",
"import sys\n",
"\n",
"# IP and port of Tello\n",
"tello_address = ('192.168.10.1', 8889)\n",
Expand Down
1 change: 1 addition & 0 deletions lesson6-keyboard-commands/TelloKeyboardCommands.py
Expand Up @@ -6,6 +6,7 @@
import socket
import threading
import time
import sys

# IP and port of Tello
tello_address = ('192.168.10.1', 8889)
Expand Down

0 comments on commit 6114c2e

Please sign in to comment.