Clean up imports
[mudpy.git] / bin / test
index 45ce5aa..0ec3544 100755 (executable)
--- a/bin/test
+++ b/bin/test
@@ -6,6 +6,8 @@
 # to use, copy, modify, and distribute this software is granted under
 # terms provided in the LICENSE file distributed with this software.
 
+import telnetlib
+
 conversation = (
     ("Identify yourself:", "testuser"),
     ("Enter your choice:", "n"),
@@ -24,7 +26,6 @@ conversation = (
     ("Disconnecting...", ""),
 )
 
-import telnetlib
 mud = telnetlib.Telnet()
 mud.open("::1", 6669)
 for question, answer in conversation: