Browse Source

Fixed spacing and lint errors.

Kenny Woodson 7 years ago
parent
commit
94923be737

+ 4 - 3
roles/lib_openshift/library/oc_storageclass.py

@@ -1456,7 +1456,8 @@ class StorageClassConfig(object):
         if self.annotations is not None:
             self.data['metadata']['annotations'] = self.annotations
 
-        self.data['metadata']['annotations']['storageclass.beta.kubernetes.io/is-default-class'] = self.default_storage_class
+        self.data['metadata']['annotations']['storageclass.beta.kubernetes.io/is-default-class'] = \
+                self.default_storage_class
 
         if self.provisioner is None:
             self.data['provisioner'] = 'kubernetes.io/aws-ebs'
@@ -1542,8 +1543,8 @@ class OCStorageClass(OpenShiftCLI):
         '''update the object'''
         # parameters are currently unable to be updated.  need to delete and recreate
         self.delete()
-        # pause here and attempt to wait for delete.  
-        # Better option would be to poll 
+        # pause here and attempt to wait for delete.
+        # Better option would be to poll
         import time
         time.sleep(5)
         return self.create()

+ 2 - 2
roles/lib_openshift/src/class/oc_storageclass.py

@@ -46,8 +46,8 @@ class OCStorageClass(OpenShiftCLI):
         '''update the object'''
         # parameters are currently unable to be updated.  need to delete and recreate
         self.delete()
-        # pause here and attempt to wait for delete.  
-        # Better option would be to poll 
+        # pause here and attempt to wait for delete.
+        # Better option would be to poll
         import time
         time.sleep(5)
         return self.create()

+ 2 - 1
roles/lib_openshift/src/lib/storageclass.py

@@ -37,7 +37,8 @@ class StorageClassConfig(object):
         if self.annotations is not None:
             self.data['metadata']['annotations'] = self.annotations
 
-        self.data['metadata']['annotations']['storageclass.beta.kubernetes.io/is-default-class'] = self.default_storage_class
+        self.data['metadata']['annotations']['storageclass.beta.kubernetes.io/is-default-class'] = \
+                self.default_storage_class
 
         if self.provisioner is None:
             self.data['provisioner'] = 'kubernetes.io/aws-ebs'