summaryrefslogtreecommitdiff
path: root/heat/objects/raw_template_files.py
diff options
context:
space:
mode:
authorStephen Finucane <stephenfin@redhat.com>2023-03-23 12:15:08 +0000
committerTakashi Kajinami <tkajinam@redhat.com>2023-03-25 12:02:27 +0900
commit43a5f3984e433ec28616cfe98cb060d9ff51af58 (patch)
tree8c10a86209cf83e07e75846b7880268d2c3473c1 /heat/objects/raw_template_files.py
parent586e5b0a75167b20882728f642c8a81195afb71d (diff)
downloadheat-43a5f3984e433ec28616cfe98cb060d9ff51af58.tar.gz
db: Remove layer of indirection
We don't have another ORM to content with here. Simplify 'heat.db.sqlalchemy' to 'heat.db'. Signed-off-by: Stephen Finucane <stephenfin@redhat.com> Change-Id: Id1db6c0ff126859f436c6c9b1187c250f38ebb62
Diffstat (limited to 'heat/objects/raw_template_files.py')
-rw-r--r--heat/objects/raw_template_files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heat/objects/raw_template_files.py b/heat/objects/raw_template_files.py
index 1afed6e7e..36d6cde91 100644
--- a/heat/objects/raw_template_files.py
+++ b/heat/objects/raw_template_files.py
@@ -16,7 +16,7 @@
from oslo_versionedobjects import base
from oslo_versionedobjects import fields
-from heat.db.sqlalchemy import api as db_api
+from heat.db import api as db_api
from heat.objects import base as heat_base
from heat.objects import fields as heat_fields