aboutsummaryrefslogtreecommitdiffstats
path: root/heatbridge/heatbridge/OpenstackContext.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatbridge/heatbridge/OpenstackContext.py')
-rw-r--r--heatbridge/heatbridge/OpenstackContext.py30
1 files changed, 15 insertions, 15 deletions
diff --git a/heatbridge/heatbridge/OpenstackContext.py b/heatbridge/heatbridge/OpenstackContext.py
index 55661d3..980c72e 100644
--- a/heatbridge/heatbridge/OpenstackContext.py
+++ b/heatbridge/heatbridge/OpenstackContext.py
@@ -1,20 +1,20 @@
class OpenstackContext:
"""OpenstackContext is a simple class that holds the provided information that heatbridge uses."""
- #this holds the info of the openstack clients
- username = None;
- password = None;
- tenant = None;
- region = None;
- owner = None;
- domain_id = None;
- project_name = None;
+ # this holds the info of the openstack clients
+ username = None
+ password = None
+ tenant = None
+ region = None
+ owner = None
+ domain_id = None
+ project_name = None
def __init__(self, username, password, tenant, region, owner, domain_id, project_name):
- self.username = username;
- self.password = password;
- self.tenant = tenant;
- self.region = region;
- self.owner = owner;
- self.domain_id = domain_id;
- self.project_name = project_name;
+ self.username = username
+ self.password = password
+ self.tenant = tenant
+ self.region = region
+ self.owner = owner
+ self.domain_id = domain_id
+ self.project_name = project_name