Additional style cleanup
[mudpy.git] / lib / mudpy / telnet.py
index 043c86b..e7a0c86 100644 (file)
@@ -59,7 +59,8 @@ def send_command(user, *command):
 
 
 def is_enabled(user, telopt, party, state=YES):
-    u"""Returns True if the indicated Telnet option is enabled, False if not."""
+    u"""Returns True if the indicated Telnet option is enabled, False if
+        not."""
     if (telopt, party) in user.telopts and user.telopts[
        (telopt, party)
        ] is state:
@@ -86,7 +87,8 @@ def enable(user, telopt, party):
 
 
 def disable(user, telopt, party):
-    u"""Negotiates disabling a Telnet option for the indicated user's socket."""
+    u"""Negotiates disabling a Telnet option for the indicated user's
+        socket."""
     if party is HIM:
         txneg = DONT
     else: