Move get_os_class from image_creator to os_type
[snf-image-creator] / image_creator / gpt.py
index 1a7ed04..f6f1cc2 100644 (file)
@@ -232,7 +232,7 @@ class GPTPartitionTable(object):
     def __init__(self, disk):
         self.disk = disk
         with open(disk, "rb") as d:
-            #MBR (Logical block address 0)
+            # MBR (Logical block address 0)
             lba0 = d.read(BLOCKSIZE)
             self.mbr = MBR(lba0)