summaryrefslogtreecommitdiff
path: root/ironic/api/controllers/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'ironic/api/controllers/base.py')
-rw-r--r--ironic/api/controllers/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ironic/api/controllers/base.py b/ironic/api/controllers/base.py
index 8a10ffbfc..a132a339f 100644
--- a/ironic/api/controllers/base.py
+++ b/ironic/api/controllers/base.py
@@ -21,10 +21,10 @@ from wsme import types as wtypes
class APIBase(wtypes.Base):
created_at = wsme.wsattr(datetime.datetime, readonly=True)
- "The time in UTC at which the object is created"
+ """The time in UTC at which the object is created"""
updated_at = wsme.wsattr(datetime.datetime, readonly=True)
- "The time in UTC at which the object is updated"
+ """The time in UTC at which the object is updated"""
def as_dict(self):
"""Render this object as a dict of its fields."""