Browse Source

- code cleanup
- and added all the python environments back to the tox file.

madhugilla 9 năm trước cách đây
mục cha
commit
744d1d040f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      cloudbridge/cloud/providers/azure/mock_azure_client.py

+ 1 - 1
cloudbridge/cloud/providers/azure/mock_azure_client.py

@@ -2,6 +2,7 @@ from azure.mgmt.network.models import NetworkSecurityGroup
 from azure.storage.blob.models import Container
 from azure.mgmt.resource.resources.models import ResourceGroup
 
+
 class MockAzureClient:
     sec_gr1 = NetworkSecurityGroup()
     sec_gr1.name = "sec_group1"
@@ -47,4 +48,3 @@ class MockAzureClient:
         new_container = Container()
         new_container.name = "newContainerCreate"
         return None
-