Merge "Fix syntax errors of the comments"
This commit is contained in:
commit
aab84fbb2f
@ -55,7 +55,7 @@ Base = declarative.declarative_base(cls=_MuranoBase)
|
|||||||
|
|
||||||
|
|
||||||
class Environment(Base, TimestampMixin):
|
class Environment(Base, TimestampMixin):
|
||||||
"""Represents a Environment in the metadata-store."""
|
"""Represents an Environment in the metadata-store."""
|
||||||
__tablename__ = 'environment'
|
__tablename__ = 'environment'
|
||||||
__table_args__ = (sa.Index(
|
__table_args__ = (sa.Index(
|
||||||
'ix_name_tenant_id', 'name', 'tenant_id', unique=True),)
|
'ix_name_tenant_id', 'name', 'tenant_id', unique=True),)
|
||||||
@ -89,7 +89,7 @@ class Environment(Base, TimestampMixin):
|
|||||||
|
|
||||||
|
|
||||||
class EnvironmentTemplate(Base, TimestampMixin):
|
class EnvironmentTemplate(Base, TimestampMixin):
|
||||||
"""Represents a Environment Template in the metadata-store."""
|
"""Represents an Environment Template in the metadata-store."""
|
||||||
__tablename__ = 'environment-template'
|
__tablename__ = 'environment-template'
|
||||||
|
|
||||||
id = sa.Column(sa.String(36),
|
id = sa.Column(sa.String(36),
|
||||||
|
@ -107,7 +107,7 @@ class EnvTemplateServices(object):
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def update(env_template_id, body):
|
def update(env_template_id, body):
|
||||||
"""It updates the description of a environment template.
|
"""It updates the description of an environment template.
|
||||||
|
|
||||||
:param env_template_id: Template Id to be deleted.
|
:param env_template_id: Template Id to be deleted.
|
||||||
:param body: The description to be updated.
|
:param body: The description to be updated.
|
||||||
|
Loading…
Reference in New Issue
Block a user