summaryrefslogtreecommitdiff
path: root/heat/objects/software_config.py
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-04-07 17:46:50 +0000
committerGerrit Code Review <review@openstack.org>2023-04-07 17:46:50 +0000
commitcec8eb12c628a38b2431dac78ed37fc3f1506939 (patch)
treef613061baee36e32de818128e96f6d5742112585 /heat/objects/software_config.py
parent1ca04117b9c3bff0b338df97df2c26d6a70929ea (diff)
parent43a5f3984e433ec28616cfe98cb060d9ff51af58 (diff)
downloadheat-cec8eb12c628a38b2431dac78ed37fc3f1506939.tar.gz
Merge "db: Remove layer of indirection"
Diffstat (limited to 'heat/objects/software_config.py')
-rw-r--r--heat/objects/software_config.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/heat/objects/software_config.py b/heat/objects/software_config.py
index 02ac8a908..e0d9d42c7 100644
--- a/heat/objects/software_config.py
+++ b/heat/objects/software_config.py
@@ -12,13 +12,12 @@
# License for the specific language governing permissions and limitations
# under the License.
-
"""SoftwareConfig object."""
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