Additional style cleanup
[mudpy.git] / lib / mudpy / data.py
index f94b02b..3ed5e0f 100644 (file)
@@ -91,9 +91,8 @@ class DataFile:
                     relative=self.filename,
                     universe=self.universe
                 )
-            if include_file not in self.universe.files or not self.universe.files[
-               include_file
-               ].is_writeable():
+            if (include_file not in self.universe.files or not
+                    self.universe.files[include_file].is_writeable()):
                 DataFile(include_file, self.universe)
 
     def save(self):