Appease style checks
[mudpy.git] / mudpy / misc.py
index 6c720d5..3cb201c 100644 (file)
@@ -300,9 +300,10 @@ class Element:
         if re.match("""^area:-?\d+,-?\d+,-?\d+$""", self.key):
             coordinates = [(int(x))
                            for x in self.key.split(":")[1].split(",")]
         if re.match("""^area:-?\d+,-?\d+,-?\d+$""", self.key):
             coordinates = [(int(x))
                            for x in self.key.split(":")[1].split(",")]
-            offsets = dict((x,
-                self.universe.contents["mudpy.movement.%s" % x].get("vector")
-                ) for x in self.universe.directions)
+            offsets = dict(
+                (x,
+                 self.universe.contents["mudpy.movement.%s" % x].get("vector")
+                 ) for x in self.universe.directions)
             for portal in self.get("gridlinks"):
                 adjacent = map(lambda c, o: c + o,
                                coordinates, offsets[portal])
             for portal in self.get("gridlinks"):
                 adjacent = map(lambda c, o: c + o,
                                coordinates, offsets[portal])